Mikrotik пинг до роутера

Mikrotik пинг до роутера

Обнаружена блокировка рекламы: Наш сайт существует благодаря показу онлайн-рекламы нашим посетителям. Пожалуйста, подумайте о поддержке нас, отключив блокировщик рекламы на нашем веб-сайте.

Периодический огромный Ping по WIFI

Доброго времени суток, ув. специалисты!
Прошу совета, куда копать.
Проблема в следующем:
Несколько раз в месяц wifi вешается на всех устройствах в сети, т.е. начинает сильно тупить при формальном наличии подключения и уверенном сигнале. Попытка пингануть роутер обнаруживает, что раз в секунд 10-20 проскакивает большой или огромный пинг, от сотен до нескольких тысяч мс. Положение клиента (телефона) относительно роутера — не играет роли, тупит даже, когда близко.
Перезагрузка не помогает. Через пару часов может само прекратиться.

Обстановка:
Роутер домашний, несколько телефонов и планшет, стационарный комп по шнуру.
Окружение очень загруженное, свободный канал выбирал, прошу обновлял, с шириной игрался, вроде настраивал по мануалам в сети, мощность передатчика по-умолчанию.
RouterOS v6.41 (stable), модель 951Ui-2HnD;

Что может так влиять на пинг? Окружающие сети? Или моя кривая настройка?
Буду рад диалогу ) если нужна информация — с удовольствием покажу.
Спасибо )

loskiq Сообщения: 6 Зарегистрирован: 24 дек 2017, 08:43 Контактная информация:

Скорее всего какое-то устройство мусорит в сети (мультикаст, бродкаст). А возможно, сосед включает какое-то устройство, которое так делает. Попробуйте перенести микротик в другое место и протестировать там.

loskiq писал(а): Скорее всего какое-то устройство мусорит в сети (мультикаст, бродкаст). А возможно, сосед включает какое-то устройство, которое так делает. Попробуйте перенести микротик в другое место и протестировать там.

Спасибо за ответ!)
Вряд ли какое-то из наших устройств, потому как тестировал даже в тот момент, когда в сети только один телефон был. Так что если и так, то скорее всего соседи.. SSID одной из соседних точек зовётся»IP_TV_. » может оно? Но тогда почему только временами, если ТВ скорее всего работает чаще, чем пару раз в месяц?

А есть способ как-то хотя бы предположить виновников, если правильно просканить окружение? Если да — то каким инструментом в Роутер ОС следует воспользоваться?

в терминале:
interface wireless spectral-history
При выполнении обязательно нужно быть подключенным по проводу.
И да, устройство не обязательно беспроводное, обычная микроволновка на пути между вами и точкой может таких чудес устроить.

Читайте также:  Подсоединить через два роутера

KARaS’b писал(а): в терминале:
interface wireless spectral-history
При выполнении обязательно нужно быть подключенным по проводу.
И да, устройство не обязательно беспроводное, обычная микроволновка на пути между вами и точкой может таких чудес устроить.

Не нашел такого пункта меню. Сканил Snoofer’ом.. но понять, кто именно предположительно может служить источником проблем не смог.
Такие аномалии наблюдаются даже если сидеть в полуметре от роутера. Так что..не микроволновка. Но за наводку спасибо, задумался, что находится за стеной у соседа..

Dragon_Knight Сообщения: 1724 Зарегистрирован: 26 мар 2012, 18:21 Откуда: МО, Мытищи Контактная информация:

Источник

Summary

Ping uses the Internet Control Message Protocol (ICMP) Echo messages to determine if a remote host is active or inactive and to determine the round-trip delay when communicating with it. Ping tool sends ICMP (type 8) message to the host and waits for the ICMP echo-reply (type 0). The interval between these events is called a round trip. If the response (that is called pong) has not come until the end of the interval, we assume it has timed out. The second significant parameter reported is TTL (Time to Live). Is decremented at each machine in which the packet is processed. The packet will reach its destination only when the TTL is greater than the number of routers between the source and the destination.

Quick Example

RouterOS Ping tool allows you to configure various additional parameters like:

  • arp-ping;
  • address;
  • src-address;
  • count;
  • dscp;
  • interface;
  • interval;
  • routing-table;
  • size;
  • ttl;

Let’s take a look ar very simple example:

[admin@MikroTik] > /tool/ping address=10.155.126.252 count=5 interval=200ms SEQ HOST SIZE TTL TIME STATUS 0 10.155.126.252 56 64 0ms 1 10.155.126.252 56 64 0ms 2 10.155.126.252 56 64 0ms 3 10.155.126.252 56 64 0ms 4 10.155.126.252 56 64 0ms sent=5 received=5 packet-loss=0% min-rtt=0ms avg-rtt=0ms max-rtt=0ms

The same we can achieve with more shorter CLI command:

[admin@MikroTik] > /ping 10.155.126.252 count=5 interval=50ms SEQ HOST SIZE TTL TIME STATUS 0 10.155.126.252 56 64 0ms 1 10.155.126.252 56 64 0ms 2 10.155.126.252 56 64 0ms 3 10.155.126.252 56 64 0ms 4 10.155.126.252 56 64 0ms sent=5 received=5 packet-loss=0% min-rtt=0ms avg-rtt=0ms max-rtt=0ms

It is also possible to ping multicast address to discover all hosts belonging to multicast group:

[admin@MikroTik] > /ping ff02::1 HOST SIZE TTL TIME STATUS fe80::20c:42ff:fe49:fceb 56 64 1ms echo reply fe80::20c:42ff:fe72:a1b0 56 64 1ms echo reply fe80::20c:42ff:fe28:7945 56 64 1ms echo reply fe80::21a:4dff:fe5d:8e56 56 64 3ms echo reply sent=1 received=4 packet-loss=-300% min-rtt=1ms avg-rtt=1ms max-rtt=3ms
[admin@MikroTik] > /ping www.google.com count=5 interval=50ms SEQ HOST SIZE TTL TIME STATUS 0 216.58.207.228 56 51 14ms 1 216.58.207.228 56 51 13ms 2 216.58.207.228 56 51 13ms 3 216.58.207.228 56 51 13ms 4 216.58.207.228 56 51 13ms sent=5 received=5 packet-loss=0% min-rtt=13ms avg-rtt=13ms max-rtt=14ms

When you use the domain name and CLI for ping, router DNS will be used to resolve the address. When you use the Winbox Tools/Ping, your computer’s DNS will be used to resolve the given address.

Читайте также:  Роутер asus rt n12 блок питания

MAC Ping

This submenu allows enabling the mac ping server.

When mac ping is enabled, other hosts on the same broadcast domain can use the ping tool to ping mac address:

[admin@MikroTik] > /tool mac-server ping set enabled=yes
[admin@MikroTik] > /ping 00:0C:42:72:A1:B0 HOST SIZE TTL TIME STATUS 00:0C:42:72:A1:B0 56 0ms 00:0C:42:72:A1:B0 56 0ms sent=2 received=2 packet-loss=0% min-rtt=0ms avg-rtt=0ms max-rtt=0ms

Источник

Manual:Tools/Ping

Ping uses Internet Control Message Protocol (ICMP) Echo messages to determine if a remote host is active or inactive and to determine the round-trip delay when communicating with it. Ping tool sends ICMP (type 8) message to the host and waits for the ICMP echo-reply (type 0). The interval between these events is called round trip. If the response (that is called pong) has not come until the end of the interval, we assume it has timed out. The second significant parameter reported is ttl (Time to Live). Is is decremented at each machine in which the packet is processed. The packet will reach its destination only when the ttl is greater than the number of routers between the source and the destination.

Properties

Command: /ping [address] [properties]

Ping tool can be used to ping IP address and mac address. Mac ping works only to devices that has mac ping server configured. Read more>>

Property Description
arp-ping (yes | no; Default: )
count (integer [0..4294967295]; Default: 0) Total number of packets to send (defult is to send forever until interrupted).
do-not-fragment ( ; Default: ) If do-not-fragment flag is set packets will not be fragmented if size exceeds interface mtu.
interface (string; Default: ) Which interface to use (required when pinging IPv6 address)
interval (time [10ms..5s]; Default: 1s) how long to wait for response. If no response is received within 1000ms, ping will show as «timed out», but if you will receive a response after 3ms, still the ping program will wait the rest of 997ms until it sends next ping.
routing-table (string; Default: main) Which routing table to use to resolve destination. Used in VRF setups.
size (integer; Default: 64) Packet size to be used in bytes (includes payload and IP header)
src-address (IPv4,IPv6; Default: ) IPv4/IPv6 address to be set as packets source. Useful if replies must be sent to specific address.
ttl (integer [1..255]; Default: ) Time to live parameter adjustment
Читайте также:  Мтс роутер настройка через телефон

Note: If DNS is configured, then DNS name can be used to ping destination

Examples

[admin@dzeltenais_burkaans] > /ping 10.1.101.3 HOST SIZE TTL TIME STATUS 10.1.101.3 56 64 3ms 10.1.101.3 56 64 10ms 10.1.101.3 56 64 7ms sent=3 received=3 packet-loss=0% min-rtt=3ms avg-rtt=6ms max-rtt=10ms
[admin@dzeltenais_burkaans] > /ping 10.1.101.9 HOST SIZE TTL TIME STATUS timeout timeout timeout sent=3 received=0 packet-loss=100%

It is also possible to ping multicast address to discover all hosts belongign to multicast group:

[admin@dzeltenais_burkaans] > /ping ff02::1 HOST SIZE TTL TIME STATUS fe80::20c:42ff:fe49:fceb 56 64 1ms echo reply fe80::20c:42ff:fe72:a1b0 56 64 1ms echo reply fe80::20c:42ff:fe28:7945 56 64 1ms echo reply fe80::21a:4dff:fe5d:8e56 56 64 3ms echo reply sent=1 received=4 packet-loss=-300% min-rtt=1ms avg-rtt=1ms max-rtt=3ms
[admin@dzeltenais_burkaans] > /ping 10.1.101.3 size=1600 do-not-fragment HOST SIZE TTL TIME STATUS 576 64 3ms fragmentation needed and DF set 576 64 6ms fragmentation needed and DF set sent=2 received=2 packet-loss=0% min-rtt=3ms avg-rtt=4ms max-rtt=6ms
[admin@dzeltenais_burkaans] > /ping www.google.lv HOST SIZE TTL TIME STATUS 74.125.77.99 56 47 59ms 74.125.77.99 56 47 85ms sent=2 received=2 packet-loss=0% min-rtt=59ms avg-rtt=72ms max-rtt=85ms
[admin@dzeltenais_burkaans] > /ping 00:0C:42:72:A1:B0 HOST SIZE TTL TIME STATUS 00:0C:42:72:A1:B0 56 0ms 00:0C:42:72:A1:B0 56 0ms sent=2 received=2 packet-loss=0% min-rtt=0ms avg-rtt=0ms max-rtt=0ms

Mac Ping

Sub-menu: /mac-server ping

This submenu allows to enable mac ping server.

When mac ping is enabled, other hosts on the same broadcast domain can use ping tool to ping mac address.

[admin@dzeltenais_burkaans] > /tool mac-server ping set enabled=yes

Источник

Оцените статью
Adblock
detector