Блокировка трафика UDP 443 порт на маршрутизаторе.

Ключ
Эта строка удалена.
Это слово было удалено. Это слово было добавлено.
Эта строка добавлена.

Изменения (1)

просмотр истории страницы
Router(config)#access-list 180 deny UDP any 443
{code}

Где 180 название листа


h3. MikroTik

{code}
/ip firewall filter add chain=forward action=drop protocol=udp dst-port=443
{code}

h3. Juniper

{code}
filter drop_quic {
term drop_443 {
from {
protocol udp;
port 443;
}
then {
reject;
}
}
set interfaces et-2/0/3 family inet filter input drop_quic
{code}