This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Question about the mécanism of wireshark capture

0

Hello ,

Can a frame TCP [SYN ACK] captured (without errors) by wireshark on my eth0, finally, not leave physically, on the network? (remained blocked by the Ethernet card, right before the sending)

Thks

Thomas

asked 19 Feb '15, 06:45

ThomasAdminLinux's gravatar image

ThomasAdminL...
1111
accept rate: 0%


2 Answers:

0

In theory, yes, it could. There could be a blocking situation below the capture interface, towards the hardware. Somewhere in the driver, or in the network hardware itself there could be a problem or a bug causing this frame not to appear on the physical layer. How likely this is is depending on the maturity of the silicon and/or software driving the hardware.

answered 19 Feb '15, 08:17

Jaap's gravatar image

Jaap ♦
11.7k16101
accept rate: 14%

0

If the packet was supposedly sent by your machine, yes, that could happen. Few, if any Ethernet interfaces receive their own transmissions (I don't know of any that do), so transmitted packets are "captured" by the software delivering a copy of the packet to the packet capture mechanism. The packet might be handed to the Ethernet adapter but it might, for example, not be able to transmit it (much more likely if it's half-duplex than if it's full-duplex on a switched Ethernet).

answered 19 Feb '15, 19:41

Guy%20Harris's gravatar image

Guy Harris ♦♦
17.4k335196
accept rate: 19%