Auteur Sujet: DNS Google (8.8.8.8) avec des lenteurs  (Lu 1478 fois)

0 Membres et 1 Invité sur ce sujet

BadMax

  • Client Free adsl
  • Expert
  • *
  • Messages: 3 481
  • Malissard (26)
DNS Google (8.8.8.8) avec des lenteurs
« le: 20 septembre 2016 à 14:11:10 »
A ceux qui l'utilise un peu partout, gare aux effets de bord, ça lag et ça drop
Start: Tue Sep 20 14:00:03 2016
HOST: tao             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- ???             100.0    10    0.0   0.0   0.0   0.0   0.0
  2.|-- 213.228.33.126   0.0%    10   22.8  25.3  21.4  33.1   4.7
  3.|-- 194.149.162.234  0.0%    10   27.9  32.9  27.4  67.9  12.5
  4.|-- 194.149.160.137  0.0%    10   35.9  36.0  29.8  54.8   7.0
  5.|-- 78.254.249.89    0.0%    10   41.8  38.8  35.1  44.7   2.8
  6.|-- 78.254.249.102   0.0%    10   43.7  37.5  34.8  46.4   4.2
  7.|-- 72.14.211.26    40.0%    10   35.7  35.3  34.5  37.0   0.6
  8.|-- 72.14.239.205   50.0%    10   35.3  36.3  35.3  39.2   1.6
  9.|-- 209.85.248.31   30.0%    10   47.2  41.9  35.6  66.5  11.6
 10.|-- 108.170.234.133 30.0%    10   50.3  41.8  39.8  50.3   3.7
 11.|-- 108.170.234.143 50.0%    10   40.3  44.9  40.3  61.1   9.0
 12.|-- ???             100.0    10    0.0   0.0   0.0   0.0   0.0
 13.|-- 8.8.8.8         60.0%    10   73.0  48.2  39.4  73.0  16.6[/quote]


kgersen

  • Modérateur
  • Abonné Bbox fibre
  • *
  • Messages: 9 091
  • Paris (75)
DNS Google (8.8.8.8) avec des lenteurs
« Réponse #1 le: 20 septembre 2016 à 18:22:19 »
c'est un anycast. tu tombes sur lequel ?

voila pour l'Europe:


74.125.181.0/24   bru   Brussels   Belgium
74.125.47.0/24   bru   Brussels   Belgium
74.125.73.0/24   bru   Brussels   Belgium
74.125.112.0/24   lpp   Lappeenranta   Finland
74.125.46.0/24   lpp   Lappeenranta   Finland
74.125.74.0/24   lpp   Lappeenranta   Finland
74.125.79.0/24   lpp   Lappeenranta   Finland
74.125.81.0/24   dub   Dublin   Ireland
173.194.169.0/24   grq   Groningen   Netherlands
74.125.18.0/24   grq   Groningen   Netherlands
74.125.186.0/23   dls   Dalaman   Turkey
74.125.80.0/24   dls   Dalaman   Turkey


ou ce script shell pour avoir la liste complete:

#!/bin/sh
IFS="\"$IFS"
for LOC in $(dig -t TXT +short locations.publicdns.goog. @8.8.8.8)
do
  case $LOC in
    '') : ;;
    *.*|*:*) printf '%s ' ${LOC} ;;
    *) printf '%s\n' ${LOC} ;;
  esac
done

source