netstat -peanut에 해당하는 현대식은 무엇입니까?

netstat -peanut에 해당하는 현대식은 무엇입니까?

나는 netstat출력을 보는 데 크게 의존한다.

sudo netstat -peanut

Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name    
tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      0          27575      1902/docker-proxy   
tcp        0      0 127.0.0.1:5000          0.0.0.0:*               LISTEN      0          26977      1519/docker-proxy   
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          15340      537/rpcbind         
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      0          20953      925/nginx: master p 
tcp        0      0 0.0.0.0:8181            0.0.0.0:*               LISTEN      0          25191      1236/haproxy        
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      101        17893      716/systemd-resolve 
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          20941      921/sshd            
tcp        0      0 127.0.0.1:3000          0.0.0.0:*               LISTEN      0          25193      1236/haproxy        
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      0          20954      925/nginx: master p 
tcp        0      0 172.18.0.1:44638        172.18.0.2:27017        TIME_WAIT   0          0          -                   
tcp        0      0 172.18.0.1:44774        172.18.0.2:27017        ESTABLISHED 0          31237      1528/docker-proxy   
tcp        0      0 172.18.0.1:39470        172.18.0.3:27017        ESTABLISHED 0          32005      1574/docker-proxy   

이건 또 다른 보석이야

netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1902/docker-proxy   
tcp        0      0 127.0.0.1:5000          0.0.0.0:*               LISTEN      1519/docker-proxy   
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      537/rpcbind         
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      925/nginx: master p 
tcp        0      0 0.0.0.0:8181            0.0.0.0:*               LISTEN      1236/haproxy        
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      716/systemd-resolve 
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      921/sshd            
tcp        0      0 127.0.0.1:3000          0.0.0.0:*               LISTEN      1236/haproxy        
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      925/nginx: master p 
tcp6       0      0 :::27017                :::*                    LISTEN      1594/docker-proxy   
tcp6       0      0 :::587                  :::*                    LISTEN      1915/docker-proxy   

그러나 다음과 같은 도구로 대체 netstat된다고 합니다 ss. 위의 현대적인 방식과 유사한 출력을 생성하는 방법을 아는 사람이 있습니까?

sudo ss -l -p -n   

sudo ss -tnlp

내 시도가 충분하지 않고 netstatss 형식이 사람이 읽는 데 적합하지 않습니까?

데비안/우분투

답변1

첫 번째 명령:

ss -tap

두 번째 순서

ss -tlp

관련 정보