Projet

Général

Profil

Tâche #22165

Mis à jour par Gérald Schwartzmann il y a plus de 6 ans

Vu sur la liste Amon :

http://pcll.ac-dijon.fr/listes/arc/amon-sphynx/2017-11/msg00026.html

<pre>
A Strasbourg, je n'arrive pas à reproduire ton problème.
Pour visualiser les problèmes de mtu, la commande "ip route get to" pourra t'aider :
# ip route get to 172.X.Y.Z
172.X.Y.Z dev eth0 src 10.67.V.W
cache expires 508sec mtu 1400

Pour vider le cache, "ip route flush cache" est ton ami.

Autre outil intéressant, la commande tracepath permet d'identifier où se trouvent les limitations de la mtu :
# tracepath 172.X.Y.Z
1?: [LOCALHOST] pmtu 1500
1?: [LOCALHOST] pmtu 1438
1: 192.168.A.B 1.353ms
1: 192.168.C.D 1.972ms
2: 192.168.E.F 2.014ms
3: 192.168.G.H 1.657ms
4: 192.168.I.J 3.026ms
5: 192.168.K.L 2.543ms pmtu 1400
5: 172.M.N.O 9.930ms
6: no reply
...
</pre>

Retour