TCP Dump and Packet Capture

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key terms related to tcpdump, PCAP, and packet analysis with Wireshark.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

tcpdump

A command-line tool that captures and displays network packets (TCP/IP and more) in text form; can also write captures to a file with -w.

2
New cards

PCAP file

Packet Capture file produced by tcpdump when using -w; used for later offline analysis in tools like Wireshark.

3
New cards

-w option

tcpdump option that writes captured packets to a PCAP file rather than printing to the screen.

4
New cards

Wireshark

Graphical packet analyzer that opens PCAP files for detailed inspection and analysis.

5
New cards

IPv4 and IPv6 in tcpdump

In tcpdump output, IPv4 packets are labeled as IP and IPv6 packets as IPv6.

6
New cards

Packet header fields shown

Each packet line includes timestamp, source IP, destination IP, protocol, flags, sequence number, acknowledgment number, window size, and length.

7
New cards

TCP flags

Control bits in the TCP header (SYN, ACK, FIN, RST, etc.) that manage connection state.

8
New cards

Sequence number and Acknowledgment number

TCP numbers used for reliable data transfer: sequence identifies data bytes; acknowledgment indicates next expected byte.

9
New cards

TCP window size

Flow-control value that limits the amount of unacknowledged data.

10
New cards

Availability by OS

tcpdump is built-in by default on Linux, Unix, and macOS; on Windows you must install it separately.

11
New cards

Text-based vs graphical analysis

tcpdump runs in the terminal as a text-based tool, whereas Wireshark provides a graphical interface.

12
New cards

Capture-and-analyze workflow

Capture traffic with tcpdump and load the PCAP into Wireshark (or re-run in tcpdump) for analysis.