Hi, > I'm looking for a way to see which processes are listening > on incoming tcp/udp connections.
fstat | grep internet > Second, how can I verify what process is listening on ports > 5022,8806 and 21164? fstat | grep -e ":5022" -e ":8806" -e "21164"

