Active connections - list!?

I have this issue now, that i need to check the list of the active connections and for nothing in the world i cannot find a filter for this.

image

those 9 active connections, i want to see, which servers are :slight_smile:

thank you

Hi @adrianrus

AFAIK, you cannot see in Graylog what connects to it.
Instead, you need to check it from a terminal/console.

As root:

lsof -Pni:PORT

or

ss -anpt '( dport = :PORT or sport = :PORT )'

where PORT is the one used by the input you want to check

For example:

lsof -Pni:1515

or

ss -anpt '( dport = :1515 or sport = :1515 )'

HTH

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.