perché ss (8) comprende l'ascolto delle porte UDP in modo diverso rispetto a netstat (8)?


8

Se eseguo ss -luper visualizzare tutte le prese UDP in ascolto, nessuna delle prese viene visualizzata. Se eseguo ss -au, che elenca tutti i socket UDP (sia in ascolto che non in ascolto), i socket "in ascolto" vengono visualizzati come UNCONN:

T60:~ # lsof -n | sed -n '1p;/UDP/p'
COMMAND     PID   TID       USER   FD      TYPE     DEVICE SIZE/OFF       NODE NAME
avahi-dae   963            avahi   11u     IPv4       9088      0t0        UDP *:mdns 
avahi-dae   963            avahi   12u     IPv4       9089      0t0        UDP *:44639 
cupsd      1238             root   10u     IPv4       8160      0t0        UDP *:ipp 
dhcpcd     2072             root    7u     IPv4     532052      0t0        UDP *:bootpc 
dhclient6 13131             root    5u     IPv6      38031      0t0        UDP *:dhcpv6-client 
dhclient6 13131             root   20u     IPv4      37954      0t0        UDP *:20152 
dhclient6 13131             root   21u     IPv6      37955      0t0        UDP *:36745 
atftpd    20639             tftp    0u     IPv4     344977      0t0        UDP *:tftp 
T60:~ # netstat -lu
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
udp        0      0 *:bootpc                *:*                                 
udp        0      0 *:tftp                  *:*                                 
udp        0      0 *:44639                 *:*                                 
udp        0      0 *:ipp                   *:*                                 
udp        0      0 *:20152                 *:*                                 
udp        0      0 *:mdns                  *:*                                 
udp        0      0 *:36745                 *:*                                 
udp        0      0 *:dhcpv6-client         *:*                                 
T60:~ # ss -lu
Recv-Q Send-Q                                                                                                          Local Address:Port                                                                                                              Peer Address:Port   
T60:~ # ss -ua
State       Recv-Q Send-Q                                                                                                     Local Address:Port                                                                                                         Peer Address:Port   
UNCONN      0      0                                                                                                                      *:bootpc                                                                                                                  *:*       
UNCONN      0      0                                                                                                                      *:tftp                                                                                                                    *:*       
UNCONN      0      0                                                                                                                      *:44639                                                                                                                   *:*       
UNCONN      0      0                                                                                                                      *:ipp                                                                                                                     *:*       
UNCONN      0      0                                                                                                                      *:20152                                                                                                                   *:*       
UNCONN      0      0                                                                                                                      *:mdns                                                                                                                    *:*       
UNCONN      0      0                                                                                                                     :::36745                                                                                                                  :::*       
UNCONN      0      0                                                                                                                     :::dhcpv6-client                                                                                                                :::*       
T60:~ # ss -v
ss utility, iproute2-ss110629
T60:~ # 

Qual è la logica dietro questo? Ad esempio eseguendo atftpd in ascolto di connessioni, dovrebbe avere lo stato ASCOLTA non UNCONN, no?


Forse solo una formulazione? Una presa d'ascolto è ovviamente scollegata ... ;-)
Hauke ​​Laging,

1
@HaukeLaging Per non parlare del fatto che entrambi suonano male considerando UDP :)
TNW,

Ho notato che il comportamento di -ulvaria tra RHEL5 e RHEL6. Non ha senso per RHEL5, ma RHEL6 fa quello che ti aspetteresti. (lo stato è ancora elencato come UNCONNnell'output, ma mostra solo gli ascoltatori)
Andrew B,

Risposte:


4

UDP è un protocollo senza connessione. SS probabilmente non ne mostrerà uno in stato ASCOLTA, solo in UCONN o ESTAB.

Se lo faccio,

$ nc -u -l 2333

Quindi ss mostrerà (in una seconda shell):

$ ss -au|grep 2333
UNCONN     0      0                       *:2333                     *:*       

Se poi mi collego ad esso (terza shell)

$ nc -u localhost 2333

quindi SS mostra:

$ ss -au|grep 2333
ESTAB      0      0               127.0.0.1:2333             127.0.0.1:58434   
ESTAB      0      0               127.0.0.1:58434            127.0.0.1:2333    
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.