Информация
Услуги
  • Внедрение
  • Настройка
  • Поддержка
  • Ремонт
Контакты
Новинка
Распродажа
Новости
Доставка
Оплата
Загрузки
  • Прошивки
    • WinBox
    • RouterOS
    • Мобильные приложения MikroTik
    • Архив
  • RouterOS
  • Мобильные приложения MikroTik
  • Архив
Форум
Настройка
    info@mikrotik.moscow
    +7 495 320-55-52
    Заказать звонок
    Mikrotik.moscow
    Каталог
    • Акции
      Акции
    • Маршрутизаторы
      Маршрутизаторы
    • Коммутаторы
      Коммутаторы
    • Радиомосты и уличные точки доступа
      Радиомосты и уличные точки доступа
    • Wi-Fi для дома и офиса
      Wi-Fi для дома и офиса
    • LTE/5G
      LTE/5G
    • Powerline адаптеры
      Powerline адаптеры
    • IoT устройства
      IoT устройства
    • Оборудование 60 ГГц
      Оборудование 60 ГГц
    • Материнские платы RouterBOARD
      Материнские платы RouterBOARD
    • Корпуса
      Корпуса
    • Интерфейсы
      Интерфейсы
    • SFP/QSFP трансиверы
      SFP/QSFP трансиверы
    • Аксессуары
      Аксессуары
    • Антенны
      Антенны
    • Архив
      Архив
    Войти
    0 Сравнение
    0 Избранное
    0 Корзина
    Скачать WinBox Скачать Прошивки Форум > RouterOS Форум > SwOS Форум > Железо
    Mikrotik.moscow
    Каталог
    Войти
    0 Сравнение
    0 Избранное
    0 Корзина
    Mikrotik.moscow
    Телефоны
    +7 495 320-55-52
    Заказать звонок
    0
    0
    0
    Mikrotik.moscow
    • +7 495 320-55-52
      • Назад
      • Телефоны
      • +7 495 320-55-52
      • Заказать звонок
    • info@mikrotik.moscow
    • г. Москва, ул. Бакунинская, 84
    • Пн-Пт: 09-00 до 18-00
      Сб-Вс: выходной


    • Кабинет
    • 0 Сравнение
    • 0 Избранное
    • 0 Корзина
    Главная
    Форум
    Форум
    RouterOS
    ICMP заблокирован (нежелательно).

    ICMP заблокирован (нежелательно).

    Форумы: RouterOS, Аппаратное обеспечение, SwOS, Обратная связь, Объявления, Сторонние инструменты
    Поиск  Пользователи  Правила  Войти
    Страницы: 1
    RSS
    ICMP заблокирован (нежелательно)., RouterOS
     
    Hellbound
    Guest
    #1
    0
    28.07.2005 18:50:00
    Привет, ребята! Я не знаю почему, но пользователи, запущенные от имени, не могут пинговать IP-адреса за пределами роутера. Кажется, ICMP заблокирован, но я не могу найти виновника в моем брандмауэре. Спасибо. / ip firewall
    set input name="input" policy=accept comment=""
    set forward name="forward" policy=accept comment=""
    set output name="output" policy=accept comment=""
    add name="hotspot-temp" policy=none comment="limit unauthorized hotspot clients"
    add name="hotspot" policy=none comment="account authorized hotspot clients"
    / ip firewall rule forward
    add in-interface=onboard action=jump jump-target=hotspot-temp comment="limit access for \
       unauthorized hotspot clients" disabled=no
    add action=jump jump-target=hotspot comment="account traffic for authorized hotspot clients" \
       disabled=no
    / ip firewall rule hotspot
    / ip firewall rule hotspot-temp
    add flow=hs-auth action=return comment="return, if connection is authorized" disabled=no
    add protocol=icmp action=return comment="allow ping requests" disabled=no
    add dst-address=:53 protocol=udp action=return comment="allow dns requests" disabled=no
    add action=reject comment="reject access for unauthorized hotspot clients" disabled=no
    / ip firewall rule input
    add in-interface=onboard dst-address=:80 protocol=tcp action=jump jump-target=hotspot \
       comment="account traffic from hotspot clients to hotspot servlet" disabled=no
    add in-interface=onboard dst-address=:80 protocol=tcp action=accept comment="accept requests \
       for hotspot servlet" disabled=no
    add in-interface=onboard dst-address=:67 protocol=udp action=accept comment="accept requests \
       for local DHCP server" disabled=no
    add in-interface=onboard action=jump jump-target=hotspot-temp comment="limit access for \
       unauthorized hotspot clients" disabled=no
    / ip firewall rule output
    add src-address=:80 out-interface=onboard protocol=tcp action=jump jump-target=hotspot \
       comment="account traffic from hotspot servlet to hotspot clients" disabled=no
    / ip firewall service-port
    set ftp ports=21 disabled=no
    set pptp disabled=no
    set gre disabled=no
    set h323 disabled=yes
    set mms disabled=no
    set irc ports=6667 disabled=no
    set quake3 disabled=no
    set tftp ports=69 disabled=no
    / ip firewall mangle
    / ip firewall src-nat
    add src-address=192.168.1.0/32 dst-address=:!80 out-interface=ether2 protocol=tcp flow=hs-auth \
       action=masquerade comment="" disabled=no
    / ip firewall dst-nat
    add dst-address=:53 protocol=udp action=redirect comment="intercept all DNS requests" \
       disabled=no
    add in-interface=onboard protocol=tcp flow=!hs-auth action=redirect to-dst-port=80 \
       comment="redirect unauthorized hotspot clients to hotspot service" disabled=no
    add in-interface=onboard dst-address=:80 protocol=tcp action=redirect to-dst-port=3128 \
       comment="transparent HTTP proxy for hotspot clients" disabled=no
    add dst-address=192.168.0.1/32:4600-4700 flow=hs-auth action=nat to-dst-address=192.168.1.101 \
       comment="" disabled=yes
    / ip firewall connection tracking
    set enabled=yes tcp-syn-sent-timeout=2m tcp-syn-received-timeout=1m tcp-established-timeout=5d \
       tcp-fin-wait-timeout=2m tcp-close-wait-timeout=1m tcp-last-ack-timeout=30s \
       tcp-time-wait-timeout=2m tcp-close-timeout=10s udp-timeout=30s udp-stream-timeout=3m \
       icmp-timeout=30s generic-timeout=10m
     
     
     
    Страницы: 1
    Читают тему
    +7 495 320-55-52
    info@mikrotik.moscow
    Электрозаводская, Бауманская
    Москва, ул. Бакунинская, 84с21
    Конфиденциальность Оферта
    © 2026 «Mikrotik.Moscow»
    Главная Каталог 0 Корзина 0 Избранные Кабинет 0 Сравнение Акции Контакты Услуги Бренды Отзывы Компания Лицензии Документы Реквизиты Поиск Блог Обзоры