tools/mtu_discover.sh
2024-04-02 00:37:24 +03:00

11 lines
288 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Скрипт перебирает с помощью пинга различные размеры пакетов для определения "проходящего" размера
#
#
for (( i=1472; i>100; i-- ))
do
ping ya.ru -M do -s $i -O -c 1 -W 0.3 && break
done