O danadam está exatamente certo quanto ao significado do caractere >
. Este é o fluxo TCP descrito em man tcpdump
:
The general format of a tcp protocol line is:
src > dst: flags data-seqno ack window urgent options
Src and dst are the source and
destination IP addresses and ports.
Flags are some combination of S (SYN),
F (FIN), P (PUSH), R (RST), W (ECN
CWR) or E (ECN-Echo), or a single .'
(no flags). Data-seqno describes the
portion of sequence space covered by
the data in this packet (see example
below). Ack is sequence number of the
next data expected the other direction
on this connection. Window is the
number of bytes of receive buffer
space available the other direction on
this connection. Urg indicates there
is
urgent' data in the packet.
Options are tcp options enclosed in
angle brackets (e.g., ).
O tcpdump tem saída diferente dependendo do protocolo / camada. Como você não tem o sinalizador -n
, os campos src e dst são a pesquisa inversa de DNS do IP e a porta é a abreviação de abreviação para o que a porta é comumente usada.
Eu recomendo usar o sinal -n
, pois ele gera mais resultados em tempo real.