У меня есть этот фильтр в настройках брандмауэра, который я взял из руководства. Есть ли какие-нибудь еще предложения, чтобы понять, проблема в IP-адресе?
`/ip firewall rule input add connection-state=invalid action=drop comment=“Drop invalid connections”`
`/ip firewall rule input add connection-state=established comment=“Allow established connections”`
`/ip firewall rule input add connection-state=related comment=“Allow related connections”`
`/ip firewall rule input add protocol=udp comment=“Allow UDP”`
`/ip firewall rule input add protocol=icmp comment=“Allow ICMP Ping”`
`/ip firewall rule input add src-address=192.168.0.0/24 comment=“Allow access from our local network.”`
`/ip firewall rule input add src-address=192.168.5.0/24`
`/ip firewall rule input add src-address=192.168.60.0/24`
`/ip firewall rule input add src-address=192.168.0.0/24 protocol=tcp dst-port=8080 comment=“This is web proxy service for our customers.!”`
`/ip firewall rule input add src-address=192.168.5.0/24 protocol=tcp dst-port=8080`
`/ip firewall rule input add src-address=192.168.60.0/24 protocol=tcp dst-port=8080`
`/ip firewall rule input add action=drop log=yes comment=“Log and drop everything else”`
Но, похоже, это не помогает. Заметил в системном журнале массу записей такого рода… `wlan2 - sector: unauth or missing data sender, 00:10:E7:F5:C5:E4`. Это не один из наших пользователей, но проблема в том, что даже обычное сообщение о разрыве соединения не показывается, вместо этого постоянно выдается эта строка более 80 раз. Возможен ли вирус или троян на системе этого человека, который вызывает зависание? И если да, есть ли какие-нибудь другие фильтры или настройки брандмауэра, которые мы могли бы реализовать, чтобы защититься от повторения этого? Уже трижды зависло за последние несколько часов.
`/ip firewall rule input add connection-state=invalid action=drop comment=“Drop invalid connections”`
`/ip firewall rule input add connection-state=established comment=“Allow established connections”`
`/ip firewall rule input add connection-state=related comment=“Allow related connections”`
`/ip firewall rule input add protocol=udp comment=“Allow UDP”`
`/ip firewall rule input add protocol=icmp comment=“Allow ICMP Ping”`
`/ip firewall rule input add src-address=192.168.0.0/24 comment=“Allow access from our local network.”`
`/ip firewall rule input add src-address=192.168.5.0/24`
`/ip firewall rule input add src-address=192.168.60.0/24`
`/ip firewall rule input add src-address=192.168.0.0/24 protocol=tcp dst-port=8080 comment=“This is web proxy service for our customers.!”`
`/ip firewall rule input add src-address=192.168.5.0/24 protocol=tcp dst-port=8080`
`/ip firewall rule input add src-address=192.168.60.0/24 protocol=tcp dst-port=8080`
`/ip firewall rule input add action=drop log=yes comment=“Log and drop everything else”`
Но, похоже, это не помогает. Заметил в системном журнале массу записей такого рода… `wlan2 - sector: unauth or missing data sender, 00:10:E7:F5:C5:E4`. Это не один из наших пользователей, но проблема в том, что даже обычное сообщение о разрыве соединения не показывается, вместо этого постоянно выдается эта строка более 80 раз. Возможен ли вирус или троян на системе этого человека, который вызывает зависание? И если да, есть ли какие-нибудь другие фильтры или настройки брандмауэра, которые мы могли бы реализовать, чтобы защититься от повторения этого? Уже трижды зависло за последние несколько часов.
