Ubuntu – has netstat been replaced with a new tool

command linenetstat

Has netstat been replaced by a newer program?

I noticed netstat is part of the nettools package which was replaced by ip command.

What program should i be using to check see open/listening ports on my local computer?

Best Answer

ss

Is replacing netstat You can use it like this :

ss -aunp | grep radi
Related Question