Linux Networking & TCP/IP for Developers · Lekcja

Przechwytywanie pakietów za pomocą Wireshark/tcpdump

Naucz się przechwytywać i analizować pakiety sieciowe za pomocą `tcpdump` w wierszu poleceń oraz Wireshark do analizy graficznej.

Lekcja 1 z 411 kroki

Przechwytywanie pakietów za pomocą Wireshark/tcpdump to bezpłatna lekcja Linux Networking & TCP/IP for Developers na CoddyKit. To lekcja 1 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej Linux Networking & TCP/IP for Developers, a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.

Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.

What is Packet Capture?

Packet capture is like taking a snapshot of all the network data flowing in and out of your device. It's a powerful technique for understanding network behavior and troubleshooting issues.

You can see the raw "packets" of information, including their source, destination, and the data they carry. This helps diagnose slow connections, find security problems, or debug network applications.

Introducing `tcpdump`

tcpdump is a command-line utility for capturing and analyzing network traffic. It's pre-installed on most Linux systems, making it a go-to tool for quick network inspections.

It works by "sniffing" packets directly from your network interface. You can view them in real-time or save them for later analysis.

Basic Capture with `tcpdump`

Let's start with the most basic usage: capturing all traffic on a specific network interface. You often need sudo privileges to run tcpdump.

The -i flag specifies the interface (e.g., eth0 or wlan0). If you omit -i, tcpdump tries to pick one automatically.

sudo tcpdump -i eth0

Filtering by Host

Capturing all traffic can be overwhelming. You'll often want to filter for specific connections. The host keyword lets you capture traffic to or from a particular IP address or hostname.

sudo tcpdump -i eth0 host 192.168.1.1

Filtering by Port

Another common filter is by port. This is useful for seeing traffic related to specific services, like web (port 80/443), SSH (port 22), or DNS (port 53).

sudo tcpdump -i eth0 port 80

Combining Filters

You can combine filters using logical operators like and, or, and not. This allows for very precise targeting of the traffic you want to see.

For example, to see HTTP traffic to a specific host, you'd combine host and port.

sudo tcpdump -i eth0 host 192.168.1.1 and port 80

Saving to a File (`.pcap`)

For deeper analysis, it's best to save the captured packets to a file. The -w flag writes the raw packet data to a file with a .pcap extension. This file can then be opened by other tools.

The -c flag limits the number of packets to capture.

sudo tcpdump -i eth0 -c 100 -w my_capture.pcap

Wireshark: The GUI Analyzer

While tcpdump is excellent for command-line capture, Wireshark is the industry-standard graphical tool for deep packet inspection. It provides a user-friendly interface to visualize and analyze captured network data.

Wireshark can capture live traffic or open .pcap files created by tcpdump or other tools.

Importing `tcpdump` Files

A common workflow is to capture packets using tcpdump on a remote server (where a GUI might not be available) and then transfer the .pcap file to your local machine for analysis with Wireshark.

In Wireshark, you simply go to File > Open and select your .pcap file. Wireshark will then display all the captured packets in a structured way.

`tcpdump` Filter Challenge

You need to capture traffic on the eth0 interface that is going to or coming from the IP address 10.0.0.5, but ONLY on port 22 (SSH). Which tcpdump command would achieve this?

Lesson Recap

In this lesson, we explored the powerful world of packet capture. We learned how to use tcpdump to capture and filter network traffic directly from the command line.

  • Basic capture with -i
  • Filtering by host and port
  • Combining filters with and, or, not
  • Saving captures to a .pcap file with -w

We also introduced Wireshark as a graphical tool for in-depth analysis of these captured files. Mastering these tools is crucial for any network troubleshooter!

Bezpłatny start

Ucz się Linux Networking & TCP/IP for Developers dzięki korepetycjom AI — za darmo

Pisz i uruchamiaj kod w przeglądarce, otrzymuj natychmiastową pomoc od korepetytora AI dostępnego 24/7 i kontynuuj naukę w sieci lub w aplikacji.

Kursy
12
Lekcje
48

Często zadawane pytania

Czy lekcja „Przechwytywanie pakietów za pomocą Wireshark/tcpdump” jest bezpłatna?

Tak — pełny tekst „Przechwytywanie pakietów za pomocą Wireshark/tcpdump” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu Linux Networking & TCP/IP for Developers, przejdź na CoddyKit PRO. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.

Co nauczysz się w „Przechwytywanie pakietów za pomocą Wireshark/tcpdump”?

Naucz się przechwytywać i analizować pakiety sieciowe za pomocą `tcpdump` w wierszu poleceń oraz Wireshark do analizy graficznej. Ćwiczysz Linux Networking & TCP/IP for Developers z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.

Czy potrzebuję doświadczenia, aby zacząć Linux Networking & TCP/IP for Developers?

Nie wymagamy żadnego doświadczenia. Linux Networking & TCP/IP for Developers w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 1 z 4.

Ile czasu zajmuje lekcja „Przechwytywanie pakietów za pomocą Wireshark/tcpdump”?

Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.

Czy mogę pisać i uruchamiać kod w tej lekcji Linux Networking & TCP/IP for Developers?

Tak. Każda lekcja Linux Networking & TCP/IP for Developers zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.

Wszystkie lekcje w tym kursie

  1. Przechwytywanie pakietów za pomocą Wireshark/tcpdump
  2. Narzędzia do badania wydajności sieci
  3. Zapora sieciowa Linux (Netfilter/iptables)
  4. Diagnostyka DNS za pomocą dig i nslookup
← Powrót do Linux Networking & TCP/IP for Developers