When doing some network security checks (on which I am an amateur) for my office PC, I discovered a few unknown tcp6 connections (with netstat -nt
):
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
... (omitted known connections)
tcp6 0 0 aaa.bbb.ccc.ddd:1716 aaa.bbb.ccc.eee:55714 ESTABLISHED
tcp6 0 0 aaa.bbb.ccc.ddd:60810 aaa.bbb.ccc.fff:1716 ESTABLISHED
where aaa.bbb.ccc.ddd
is my own ip. The other two unknown ip do come from the same subnet, but I have no idea why these connections are opened.
Questions:
Where can I find the logs for these connections, e.g., who initialized the connections and how they are allowed/authorized (if this is the right word)?
Is this a sign of network attack? Since I don't remember using any service that would need a tcp connection from the same subnet. Also, I have rebooted several times and these connections always seem to pop up automatically.
If this indicates any possible insecurity, what should I do?
Update: As per the suggestion of @larsks and@ NikitaKipriyanov, I found that these connections are established by kdeconnect, which scans for available devices to pair in a local network. But it merely maintains such a list without actually pairing, so there shouldn't be any security issues at this point.