tcpdump -i eth0 -A -s0 port 443

Category: Networking

tcpdump -i eth0 -A -s0 port 443

Capture full TLS handshake bytes on port 443

-A prints each packet's payload as ASCII text. -s0 disables the default 68-byte snaplen, capturing complete packets. Note: TLS payload is encrypted — you'll see the handshake but not the application data.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.