# cat /root/mtr-command.sh # --------------------------------------------------------------------------------------------- #!/bin/bash # Owner : ZW3B’s LAB3W : The Web’s Laboratory ; Engineering of the Internet # Author : O.Romain.Jaillet-ramey (orj AT lab3w.fr) # Date Created : 2026-01-05 # Date Modified : 2026-08-12 # Description : "mtr" script with JSON output and added output variables – My ICMP traceroute. # More : Render HTML output (copy/paste) and change the "urls" variables "/var/www/html/infos/my-traceroute/mtr-traceroute.html". # You could share "your" HTML page, hosted on your servers, with the relevant IT support teams. # man 8 mtr # man 0 jq # MTR : My Traceroute # Reading MTR Output Network Diagnostic Tool : https://www.exavault.com/blog/reading-mtr-output # Linux MTR command : https://cloudns-net.medium.com/linux-mtr-command-d1b21299dc23 # Example command : "mtr addr_IP" -> trace run for 10-15 minutes for best results. # Other example : mtr -o 'J M X LSR NA B W V' -wzbc 50 addr_IP # ┌───┬─────────────────────┐ # │ L │ Loss ratio │ # ├───┼─────────────────────┤ # │ D │ Dropped packets │ # ├───┼─────────────────────┤ # │ R │ Received packets │ # ├───┼─────────────────────┤ # │ S │ Sent Packets │ # ├───┼─────────────────────┤ # │ N │ Newest RTT(ms) │ # ├───┼─────────────────────┤ # │ B │ Min/Best RTT(ms) │ # ├───┼─────────────────────┤ # │ A │ Average RTT(ms) │ # ├───┼─────────────────────┤ # │ W │ Max/Worst RTT(ms) │ # ├───┼─────────────────────┤ # │ V │ Standard Deviation │ # ├───┼─────────────────────┤ # │ G │ Geometric Mean │ # ├───┼─────────────────────┤ # │ J │ Current Jitter │ # ├───┼─────────────────────┤ # │ M │ Jitter Mean/Avg. │ # ├───┼─────────────────────┤ # │ X │ Worst Jitter │ # ├───┼─────────────────────┤ # │ I │ Interarrival Jitter │ # └───┴─────────────────────┘ # Example: -o "LSD NBAW X" # ---- HST="srv.xn--j77hya.xn--hwgz2tba.st" HST="srv.fr.xn--hwgz2tba.st" TITLE="MTR"; DESC="My Traceroute (over ICMP)" DATE=$(TZ="Europe/Paris" date +"%Y-%m-%d %H:%M:%S GMT%z") # -------------------- # MTR --count 3 ~= 10 seconds mtr 158.69.126.137 -c 3 -brwz --json | jq --arg date "$DATE" --arg title "$TITLE" --arg desc "$DESC" --arg server "$HST" '.report.infos |= . + { "server": $server, "title": $title, "desc", $desc, "date": $date, "file": "mtr-json-result_srv-fr_TO_srv-ca_ipv4.json" }' > /var/www/html/infos/my-traceroute/mtr-json-result_srv-fr_TO_srv-ca_ipv4.json # -------------------- # MTR --count 1000 ~= 15 minutes # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to SRV-CA (Montréal ; ASN 16276 OVHCloud) #mtr 158.69.126.137 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_srv-ca_ipv4.txt & # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to VPS-DE (Frankfort ; ASN 16276 OVHCloud) #mtr 135.125.133.51 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_vps-de_ipv4.txt & # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to VPS-AU (Sydney ; ASN 16276 OVHCloud) #mtr 139.99.171.39 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_vps-au_ipv4.txt & # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to VPS-GB (London ; ASN 16276 OVHCloud) #mtr 57.128.171.43 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_vps-gb_ipv4.txt & # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to HST-FR (Paris ; ASN 47583 Hostinger ) #mtr 147.79.115.130 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_hst-fr_ipv4.txt & # SRV-FR (Valdeblore ; ASN 3215 Orange S.A.) to DNS-GOOGLE (Mountain View ; ASN 15169 Google LLC) #mtr 8.8.8.8 -c 1000 -brwz > /var/www/html/infos/my-traceroute/mtr-result_$(date +%Y%m%d-%H%M00-GMT%z)_srv-fr_2_dns-google_ipv4.txt & #--------------------------------------------------------------------------------------------------- # crontab -l # m h dom mon dow command #minute (0-59) #| hour (0-23) #| | day of the month (1-31) #| | | month of the year (1-12) #| | | | day of the week (0-6 with 0=Sun) #| | | | | commands #| | | | | | #--------------------------------------------------------------------------------------------------- # -------------------- # A Traceroute # MTR --count 1000 ~= 15 minutes - Every 6 hours - Sleep +1 hour and Start #0 */6 * * * sleep $(shuf -i 3600-3600 -n1) ; sh /root/mtr-command.sh 2>/dev/null 2>&1 # MTR --count 1 ~= 10 secondes - Every 5 minutes */5 * * * * sh /root/mtr-command-one.sh 2>/dev/null 2>&1 # -------------------------------------------------------------------------------------------------- Exemple : # SRV-FR (Backend) to SRV-CA (Backend) over TCP 443 IPv6 GUA jeu. août 13 14:52:18 ⛔🔜 root@srv-fr.h1.ww1:~ # mtr 2607:5300:60:9389:15:2:a:10 -c 3 -brwz -T -P 443 Start: 2026-08-13T14:52:48+0200 HOST: ww1 Loss% Snt Last Avg Best Wrst StDev 1. AS??? fc01::10:116:42:ffff 0.0% 3 0.1 0.1 0.1 0.1 0.0 2. AS??? fc01::10:116:0:252 0.0% 3 0.2 0.2 0.2 0.3 0.1 3. AS??? fc01::10:106:0:254 0.0% 3 0.3 0.3 0.3 0.4 0.0 4. AS3215 2a01:cb1d:6aa:b400:c2d7:aaff:fec0:f839 0.0% 3 1.2 122.1 1.0 364.0 209.5 5. AS??? ??? 100.0 3 0.0 0.0 0.0 0.0 0.0 6. AS??? 2a01:cfc0:200:8000:193:252:102:82 0.0% 3 7.1 59.2 6.8 163.6 90.4 7. AS??? ??? 100.0 3 0.0 0.0 0.0 0.0 0.0 8. AS16276 mrs-mrs1-pb1-ptx.fr.eu (2001:41d0::25a8) 0.0% 3 6.6 6.7 6.4 6.9 0.3 9. AS16276 mrs-mrs1-sbb1-8k.fr.eu (2001:41d0::25b6) 0.0% 3 10.0 9.7 9.5 10.0 0.3 mrs-mrs2-sbb1-8k.fr.eu (2001:41d0::25b8) AS16276 mrs-mrs2-sbb1-8k.fr.eu (2001:41d0::25b8) 10. AS16276 2001:41d0:aaaa:100::7 0.0% 3 10.0 13.5 10.0 15.8 3.0 2001:41d0:aaaa:100::135 AS16276 2001:41d0:aaaa:100::135 11. AS16276 2001:41d0:aaaa:100::8 0.0% 3 9.8 9.5 8.5 10.1 0.9 12. AS16276 par-dpa1-sbb1-8k.fr.eu (2001:41d0::26b6) 0.0% 3 19.5 17.7 16.8 19.5 1.5 be107.par-th2-sbb1-nc5.fr.eu (2001:41d0::256a) AS16276 be107.par-th2-sbb1-nc5.fr.eu (2001:41d0::256a) 13. AS16276 be103.lil1-rbx1-sbb1-nc5.fr.eu (2001:41d0::618) 0.0% 3 21.0 20.5 20.1 21.0 0.5 be103.lil1-rbx8-sbb1-nc5.fr.eu (2001:41d0::25e7) AS16276 be103.lil1-rbx8-sbb1-nc5.fr.eu (2001:41d0::25e7) 14. AS16276 be103.lil1-rbx1-sbb1-nc5.fr.eu (2001:41d0::618) 0.0% 3 21.5 24.2 21.5 25.6 2.3 lon-thw-sbb1-nc5.uk.eu (2001:41d0::617) AS16276 lon-thw-sbb1-nc5.uk.eu (2001:41d0::617) lon-thw-sbb1-nc5.uk.eu (2001:41d0::25f0) AS16276 lon-thw-sbb1-nc5.uk.eu (2001:41d0::25f0) 15. AS16276 lon-thw-sbb1-nc5.uk.eu (2001:41d0::25f0) 0.0% 3 26.1 81.3 26.1 113.3 48.0 ymq-mtl3-sbb1-8k.uk.eu (2001:41d0::302d) AS16276 ymq-mtl3-sbb1-8k.uk.eu (2001:41d0::302d) 16. AS16276 ymq-mtl3-sbb1-8k.uk.eu (2001:41d0::302d) 0.0% 3 104.3 110.9 104.3 122.6 10.2 be106.bhs-g1-nc5.qc.ca (2607:5300::2563) AS16276 be106.bhs-g1-nc5.qc.ca (2607:5300::2563) 17. AS16276 vl100.bhs-d1-a75.qc.ca (2607:5300::1c3) 33.3% 3 103.5 103.9 103.5 104.3 0.6 be106.bhs-g1-nc5.qc.ca (2607:5300::2563) AS16276 be106.bhs-g1-nc5.qc.ca (2607:5300::2563) 18. AS16276 2001:41d0:0:50::6:95d 0.0% 3 102.9 104.1 102.9 105.1 1.1 2001:41d0:0:50::6:84b AS16276 2001:41d0:0:50::6:84b vl100.bhs-d1-a75.qc.ca (2607:5300::1c3) AS16276 vl100.bhs-d1-a75.qc.ca (2607:5300::1c3) 19. AS16276 2001:41d0:0:50::2:15d 0.0% 3 99.1 100.7 99.1 103.6 2.5 2001:41d0:0:50::2:161 AS16276 2001:41d0:0:50::2:161 2001:41d0:0:50::2:15f AS16276 2001:41d0:0:50::2:15f 20. AS16276 2001:41d0:0:50::2:15d 0.0% 3 99.7 103.0 99.7 106.3 3.3 srv.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389::1) AS16276 srv.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389::1) 21. AS16276 srv.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389::1) 0.0% 3 103.9 103.8 103.6 104.0 0.2 22. AS16276 xn--ug8h.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389:15:2:a:10) 0.0% 3 103.1 101.8 99.0 103.2 2.4 xn--53h.xn--9g9h.srv.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389:15:2:0:1) AS16276 xn--53h.xn--9g9h.srv.xn--e77hd.xn--hwgz2tba.st (2607:5300:60:9389:15:2:0:1) # SRV-CA (Backend) to SRV-FR over TCP 443 IPv6 GUA # Backend : 2a01:cb1d:6aa:b400:1ab3:116:42:10 Thu Aug 13 09:07:06 ⛔🔜 root@srv-ca.lb2.ww2:~ # mtr 2a01:cb1d:6aa:b400:1ab3:116:42:10 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T09:07:11-0400 HOST: ww2 Loss% Snt Last Avg Best Wrst StDev 1. AS16276 2607:5300:60:9389:15:2:a:ffff 0.0% 3 0.1 0.1 0.1 0.1 0.0 2. AS16276 v2.ca.ipv10.net (2607:5300:60:9389:15:2:0:f) 0.0% 3 0.2 0.2 0.2 0.2 0.0 3. AS16276 ovh.ipv10.net (2607:5300:60:93ff:ff:ff:ff:fd) 0.0% 3 0.7 0.9 0.7 1.0 0.1 ovh.ipv10.net (2607:5300:60:93ff:ff:ff:ff:fe) AS16276 ovh.xn--ip10-mw4b.ws (2607:5300:60:93ff:ff:ff:ff:fe) 4. AS16276 2001:41d0:0:50::2:160 0.0% 3 0.9 1.0 0.9 1.2 0.2 2001:41d0:0:50::2:15e AS16276 2001:41d0:0:50::2:15e 2001:41d0:0:50::2:15c AS16276 2001:41d0:0:50::2:15c 5. AS16276 2001:41d0:0:50::6:84a 0.0% 3 0.2 0.3 0.2 0.3 0.1 2001:41d0:0:50::6:95a AS16276 2001:41d0:0:50::6:95a 2001:41d0:0:50::6:958 AS16276 2001:41d0:0:50::6:958 6. AS16276 be100-100.bhs-g1-nc5.qc.ca (2607:5300::1c2) 33.3% 3 1024. 1021. 1019. 1024. 3.6 7. AS16276 ymq-mtl3-sbb2-8k.qc.ca (2607:5300::2564) 0.0% 3 3.6 3.4 3.3 3.6 0.2 ymq-mtl3-sbb1-8k.qc.ca (2607:5300::2562) AS16276 ymq-mtl3-sbb1-8k.qc.ca (2607:5300::2562) 8. AS16276 be301.ymq-mtl3-pb2-8k.qc.ca (2001:41d0::2695) 0.0% 3 1033. 347.3 4.2 1033. 593.9 2001:41d0::2689 AS16276 2001:41d0::2689 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) AS16276 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) 9. AS174 2001:550:2:6::3e 0.0% 3 1080. 545.0 29.6 1080. 525.6 10. AS174 be2089.ccr21.ymq01.atlas.cogentco.com (2001:550:0:1000::9a36:2d71) 0.0% 3 1006. 477.7 1.7 1006. 504.4 11. AS1299 nyk-bb5-link.ip.twelve99.net (2001:2034:a:f3::) 33.3% 3 1032. 678.4 324.8 1032. 500.1 be2088.ccr21.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b12) AS174 be2088.ccr21.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b12) 12. AS174 be4077.ccr42.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a65) 33.3% 3 9.3 9.3 9.3 9.3 0.0 be4076.ccr41.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a61) AS174 be4076.ccr41.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a61) 13. AS174 port-channel8073.ccr91.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:aa45) 0.0% 3 13.9 80.5 13.9 124.4 58.6 port-channel4188.ccr92.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:1e79) AS174 port-channel4188.ccr92.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:1e79) 2a01:cb1d:6aa:b400:1ab3:116:42:10 AS3215 2a01:cb1d:6aa:b400:1ab3:116:42:10 14. AS3215 2a01:cb1d:6aa:b400:1ab3:116:42:10 0.0% 2 103.7 64.0 24.2 103.7 56.2 be8413.ccr41.iad02.atlas.cogentco.com (2001:550:0:1000::9a36:5da) AS174 be8413.ccr41.iad02.atlas.cogentco.com (2001:550:0:1000::9a36:5da) # OK # Frontend : 2a01:cb1d:6aa:b400:1ab3::1 Thu Aug 13 09:07:21 ⛔🔜 root@srv-ca.lb2.ww2:~ # mtr 2a01:cb1d:6aa:b400:1ab3::1 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T09:14:27-0400 HOST: ww2 Loss% Snt Last Avg Best Wrst StDev 1. AS16276 2607:5300:60:9389:15:2:a:ffff 0.0% 3 0.2 0.2 0.1 0.2 0.0 2. AS16276 v2.ca.ipv10.net (2607:5300:60:9389:15:2:0:f) 0.0% 3 0.2 0.2 0.2 0.3 0.1 3. AS16276 ovh.ipv10.net (2607:5300:60:93ff:ff:ff:ff:fe) 0.0% 3 1.1 1.0 0.9 1.1 0.1 4. AS16276 2001:41d0:0:50::2:162 0.0% 3 0.9 1.1 0.9 1.2 0.2 2001:41d0:0:50::2:160 AS16276 2001:41d0:0:50::2:160 2001:41d0:0:50::2:15c AS16276 2001:41d0:0:50::2:15c 5. AS16276 2001:41d0:0:50::6:958 0.0% 3 0.3 0.3 0.3 0.5 0.1 2001:41d0:0:50::6:84a AS16276 2001:41d0:0:50::6:84a 2001:41d0:0:50::6:95c AS16276 2001:41d0:0:50::6:95c 6. AS16276 be100-100.bhs-g1-nc5.qc.ca (2607:5300::1c2) 66.7% 3 3045. 3045. 3045. 3045. 0.0 7. AS16276 ymq-mtl3-sbb2-8k.qc.ca (2607:5300::2564) 0.0% 3 3.4 4.2 3.4 4.7 0.7 ymq-mtl3-sbb1-8k.qc.ca (2607:5300::2562) AS16276 ymq-mtl3-sbb1-8k.qc.ca (2607:5300::2562) 8. AS16276 be301.ymq-mtl3-pb2-8k.qc.ca (2001:41d0::2695) 0.0% 3 4.4 4.1 3.8 4.4 0.3 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) AS16276 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) 9. AS174 2001:550:2:6::3e 33.3% 3 1.9 1.7 1.6 1.9 0.2 10. AS174 be2090.ccr22.ymq01.atlas.cogentco.com (2001:550:0:1000::9a36:2d75) 0.0% 3 2.0 340.3 1.9 1016. 586.0 11. AS174 be2088.ccr21.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b12) 0.0% 3 9.5 344.0 8.9 1013. 579.9 nyk-bb5-link.ip.twelve99.net (2001:2034:a:f3::) AS1299 nyk-bb5-link.ip.twelve99.net (2001:2034:a:f3::) 12. AS3215 2a01:cb1d:6aa:b400:1ab3::1 0.0% 3 104.0 72.2 9.2 104.0 54.6 be4077.ccr42.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a65) AS174 be4077.ccr42.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a65) # OK # GATE : 2a01:cb1d:6aa:b400::1 Thu Aug 13 09:14:35 ⛔🔜 root@srv-ca.lb2.ww2:~ # mtr 2a01:cb1d:6aa:b400::1 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T09:14:56-0400 HOST: ww2 Loss% Snt Last Avg Best Wrst StDev 1. AS16276 2607:5300:60:9389:15:2:a:ffff 0.0% 3 0.1 0.1 0.1 0.1 0.0 2. AS16276 v2.ca.ipv10.net (2607:5300:60:9389:15:2:0:f) 0.0% 3 0.2 0.2 0.2 0.2 0.0 3. AS16276 ovh.ipv10.net (2607:5300:60:93ff:ff:ff:ff:fd) 0.0% 3 0.7 1.2 0.7 1.7 0.5 ovh.xn--ip10-mw4b.ws (2607:5300:60:93ff:ff:ff:ff:fe) AS16276 ovh.ipv10.net (2607:5300:60:93ff:ff:ff:ff:fe) 4. AS16276 2001:41d0:0:50::2:15c 0.0% 3 0.9 1.0 0.9 1.1 0.1 2001:41d0:0:50::2:162 AS16276 2001:41d0:0:50::2:162 5. AS16276 2001:41d0:0:50::6:84c 0.0% 3 0.3 0.3 0.3 0.4 0.1 2001:41d0:0:50::6:95a AS16276 2001:41d0:0:50::6:95a 2001:41d0:0:50::6:958 AS16276 2001:41d0:0:50::6:958 6. AS16276 be100-100.bhs-g2-nc5.qc.ca (2607:5300::1cc) 66.7% 3 2.6 2.6 2.6 2.6 0.0 7. AS16276 ymq-mtl3-sbb1-8k.qc.ca (2607:5300::2562) 0.0% 3 4.8 346.7 4.4 1030. 592.5 ymq-mtl3-sbb2-8k.qc.ca (2607:5300::2564) AS16276 ymq-mtl3-sbb2-8k.qc.ca (2607:5300::2564) 8. AS16276 be300.ymq-mtl3-pb2-8k.qc.ca (2001:41d0::2691) 0.0% 3 2.9 4.1 2.9 4.9 1.1 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) AS16276 be301.ymq-mtl3-pb1-8k.qc.ca (2001:41d0::2693) 9. AS174 2001:550:2:6::3e 0.0% 3 3031. 1011. 1.6 3031. 1749.4 10. AS174 be2089.ccr21.ymq01.atlas.cogentco.com (2001:550:0:1000::9a36:2d71) 0.0% 3 1.9 2.0 1.9 2.2 0.2 be2090.ccr22.ymq01.atlas.cogentco.com (2001:550:0:1000::9a36:2d75) AS174 be2090.ccr22.ymq01.atlas.cogentco.com (2001:550:0:1000::9a36:2d75) 11. AS174 be2088.ccr21.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b12) 0.0% 3 9.3 9.3 9.3 9.4 0.0 be2104.ccr22.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b16) AS174 be2104.ccr22.alb02.atlas.cogentco.com (2001:550:0:1000::9a36:2b16) 12. AS174 be4076.ccr41.jfk02.atlas.cogentco.com (2001:550:0:1000::9a36:5a61) 0.0% 3 9.1 344.8 9.1 1016. 581.3 13. AS174 port-channel4188.ccr92.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:1e79) 0.0% 3 3031. 1268. 369.6 3031. 1526.3 port-channel8073.ccr91.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:aa45) AS174 port-channel8073.ccr91.dca04.atlas.cogentco.com (2001:550:0:1000::9a36:aa45) 14. AS174 be3026.ccr41.iad02.atlas.cogentco.com (2001:550:0:1000::9a36:2db2) 0.0% 3 3037. 1022. 14.4 3037. 1745.4 be8413.ccr41.iad02.atlas.cogentco.com (2001:550:0:1000::9a36:5da) AS174 be8413.ccr41.iad02.atlas.cogentco.com (2001:550:0:1000::9a36:5da) 15. AS174 2001:550:3::206 0.0% 3 95.5 95.3 95.1 95.5 0.2 16. AS5511 2001:688:0:2:1::397 33.3% 3 1116. 1113. 1110. 1116. 4.3 17. AS??? 2a01:cfc4:0:2100::2 0.0% 3 3140. 1786. 1104. 3140. 1172.8 18. AS??? ??? 100.0 3 0.0 0.0 0.0 0.0 0.0 19. AS3215 2a01cb08a00402110193025300750144.ipv6.abo.wanadoo.fr (2a01:cb08:a004:211:193:253:75:144) 33.3% 3 1123. 1116. 1108. 1123. 11.0 20. AS3215 2a01:cb1d:6aa:b400:c2d7:aaff:fec0:f839 0.0% 3 1126. 443.7 102.3 1126. 591.0 21. AS??? ??? 100.0 3 0.0 0.0 0.0 0.0 0.0 # KO !!!!! # FR Backend (local) to GATE-FR over TCP 443 IPv6 jeu. août 13 15:21:47 ⛔🔜 root@srv-fr.h1.ww1:~ # mtr 2a01:cb1d:6aa:b400::1 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T15:21:51+0200 HOST: ww1 Loss% Snt Last Avg Best Wrst StDev 1. AS??? fc01::10:116:42:ffff 0.0% 3 0.1 0.1 0.1 0.1 0.0 2. AS??? fc01::10:116:0:252 0.0% 3 0.2 0.2 0.2 0.3 0.0 3. AS3215 2a01:cb1d:6aa:b400::1 0.0% 3 754.6 251.8 0.4 754.6 435.4 # OK # FR Backend (local) to SRV-FR over TCP 443 IPv6 jeu. août 13 15:22:00 ⛔🔜 root@srv-fr.h1.ww1:~ # mtr 2a01:cb1d:6aa:b400:1ab3::1 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T15:23:57+0200 HOST: ww1 Loss% Snt Last Avg Best Wrst StDev 1. AS??? fc01::10:116:42:ffff 0.0% 3 0.1 0.1 0.1 0.1 0.0 2. AS3215 2a01:cb1d:6aa:b400:1ab3::1 0.0% 3 0.3 0.3 0.2 0.3 0.0 # OK # ---------------- # HST-FR to GATE-FR over TCP 443 IPv6 Mon Aug 10 19:25:48 ⛔🔜 root@hst-fr:~ # mtr 2a01:cb1d:6aa:b400::1 -6 -c 3 -brwz -T -P 443 Start: 2026-08-13T17:52:12+0200 HOST: hst-fr Loss% Snt Last Avg Best Wrst StDev 1. AS47583 _gateway (2a02:4780:28::1) 0.0% 3 1.4 1.0 0.7 1.4 0.4 2. AS47583 2a02:4780:27:ffff::2d 0.0% 3 0.6 0.7 0.6 0.7 0.0 2a02:4780:27:ffff::2e AS47583 2a02:4780:27:ffff::2e 3. AS47583 2a02:4780:27:ffff::2 0.0% 3 0.6 0.6 0.6 0.6 0.0 2a02:4780:27:ffff::1 AS47583 2a02:4780:27:ffff::1 4. AS47583 2a02:4780:27:ffff::b 0.0% 3 0.5 0.5 0.4 0.7 0.1 2a02:4780:27:ffff::c AS47583 2a02:4780:27:ffff::c 5. AS1299 prs-b9-link.ip.twelve99.net (2001:2035:0:2921::1) 0.0% 3 0.8 1.0 0.8 1.1 0.1 2001:978:2:1c::b1:1 AS174 2001:978:2:1c::b1:1 6. AS174 be9956.agr72.par05.atlas.cogentco.com (2001:550:0:1000::9a19:b99) 0.0% 3 1.3 4.0 1.3 6.3 2.5 be47.core3.par2.he.net (2001:470:e:13::2) AS6939 be47.core3.par2.he.net (2001:470:e:13::2) prs-b16-link.ip.twelve99.net (2001:2034:a:280::) AS1299 prs-b16-link.ip.twelve99.net (2001:2034:a:280::) 7. AS1299 prs-bb2-link.ip.twelve99.net (2001:2034:a:21f::1) 0.0% 3 1.4 2.4 1.4 3.1 0.9 be9920.rcr81.par05.atlas.cogentco.com (2001:550:0:1000::9a36:2625) AS174 be9920.rcr81.par05.atlas.cogentco.com (2001:550:0:1000::9a36:2625) 8. AS5511 2001:688:0:4::1ed 0.0% 3 1.5 351.7 1.5 1026. 584.4 be4.core2.lon3.he.net (2001:470:e:41::2) AS6939 be4.core2.lon3.he.net (2001:470:e:41::2) ffm-bb2-link.ip.twelve99.net (2001:2034:a:8f::1) AS1299 ffm-bb2-link.ip.twelve99.net (2001:2034:a:8f::1) 9. AS1299 ffm-b5-link.ip.twelve99.net (2001:2034:a:23::1) 33.3% 3 4108. 2059. 10.3 4108. 2897.5 ffm-b5-link.ip.twelve99.net (2001:2034:a:170::1) AS1299 ffm-b5-link.ip.twelve99.net (2001:2034:a:170::1) 10. AS6939 opentransit-as5511.100gigabitethernet4-2.core1.lon3.he.net (2001:470:0:3f7::2) 0.0% 3 1024. 347.7 8.7 1024. 585.9 orange-ic-325004.ip.twelve99-cust.net (2001:2035:0:13d9::2) AS1299 orange-ic-325004.ip.twelve99-cust.net (2001:2035:0:13d9::2) 11. AS??? ??? 100.0 3 0.0 0.0 0.0 0.0 0.0 # KO : Serice HTTPS UP - No while ...