ss
- reemplazo de netstat- TCP
- UDP
- sockets
- ICMP
 
comandos
- ss: todas las conexiones
- ss -llistening sockets
- ss -aall sockets
- ss -a -tall TCP sockets
- ss -a -uall UDP sockets
- ss -a -xall Unix sockets
- ss -a -wall raw sockets
- ss -a -4all IP4 sockets
- ss -a -6all IP6 sockets
- ss -t -r state stablished
- ss -t -r state listening
- ss -a state stablished '( dport = :https or sport = :https )'- dport: destintantion port
- sport: source port
 
- ss -a state stablished '( dport = :ssh or sport = :ssh )'
- ss -a dst <IP_ADDRESS>: listado con destino a IP
- sudo ss -t -p: identificar el proceso que usa el socket
/via: https://www.howtogeek.com/681468/how-to-use-the-ss-command-on-linux/