Log Screen

Good Morning!

Do anyone knows what does this means?
Capture.JPG
Am I getting spam to my Router?
Am I being hacked?
Who are all theses users?

Thank you
Best Regards

Looks like somebody is bruteforcing your SSH service. If you dont need it disable it under

/ip service disable ssh

If you use it, limit the access with firewall rules (example if you need access to ssh only from 192.168.1.10):

/ip firewall filter add chain=input src-address=192.168.10.1 protocol=tcp dst-port=22 action=accept place-before=0
/ip firewall filter add chain=input protocol=tcp dst-port=22 action=drop place-before=1

Just example, with firewall filter you limit access to SSH for your needs.

You can also change the ssh port 22 to 20022 ore something

Greatings