Что означает поле переупорядочения ss --info?

Linus Torvalds es probablemente una de las personas que contribuyó con la menor cantidad de código al proyecto. Su contribución es muy inferior al 1%. Eche un vistazo al código fuente que enumera todos los colaboradores....

Dado que destruyó la historia completa desde antes de 2004, debe tener mucho cuidado si desea medir sus contribuciones.

1
17.07.2019, 15:12
1 ответ

Из Переменные TCP:

The tcp_reordering variable tells the kernel how much a TCP packet may be reordered in a stream without assuming that the packet was lost somewhere on the way.

tcp_reorderingможно изменить с помощью переменной net.ipv4.tcp_reorderingв sysctl. По умолчанию это значение 3.

Если изменить переменную net.ipv4.tcp_reordering, то ss --infoнапечатает все соединения со значениями, отличными от 3. Фрагмент источника iproute2:

...
if (s->reordering != 3)
        printf(" reordering:%d", s->reordering);
...
1
27.01.2020, 23:41

Теги

Похожие вопросы