H13-511_V5.5 · Question #89
Which of the following descriptions about Linux network devices is correct?
The correct answer is D. tun/tap is simply site-to-site or ethernet devices receive packets not from devices in the house but. Note: The answer choices appear to be poorly translated (likely from Chinese), where "floor" means OSI layer, and "in the house" refers to physical hardware on the host. --- Option D is correct because tun/tap devices are virtual interfaces that receive packets from user-space…
Question
Which of the following descriptions about Linux network devices is correct?
Options
- AThe tap device works on the third floor
- BThe tun device works on the second floor
- Ctun/tap does not send packets through user space programs but sends them to physical media
- Dtun/tap is simply site-to-site or ethernet devices receive packets not from devices in the house but
How the community answered
(36 responses)- A6% (2)
- B14% (5)
- C3% (1)
- D78% (28)
Explanation
Note: The answer choices appear to be poorly translated (likely from Chinese), where "floor" means OSI layer, and "in the house" refers to physical hardware on the host.
Option D is correct because tun/tap devices are virtual interfaces that receive packets from user-space programs, not from physical network hardware - that's their defining characteristic and primary use case (e.g., VPN software intercepts and processes the packets in user space before forwarding them).
Why the distractors are wrong:
- A is wrong -
tapoperates at Layer 2 (Data Link), handling raw Ethernet frames, not Layer 3. - B is wrong -
tunoperates at Layer 3 (Network), handling IP packets, not Layer 2. - C is wrong - it says tun/tap bypasses user space, which is the exact opposite of reality; routing traffic through a user-space program is the entire point of tun/tap.
Memory tip: Think TUN = TUNnel (Layer 3, IP) and TAP = TAP into Ethernet (Layer 2, frames). A handy mnemonic: "TUN handles IPs, TAP handles frames - both let your app play network games." The key differentiator for exams: tun/tap packets always pass through user space, never directly to physical media.
Topics
Community Discussion
No community discussion yet for this question.