nerdexam
LPI

010-150 · Question #30

Which network interface always exists in a Linux system?

The correct answer is A. lo. The loopback interface 'lo' is the only network interface guaranteed to exist on every Linux system, as it is created by the kernel itself at boot regardless of hardware.

The Linux Operating System

Question

Which network interface always exists in a Linux system?

Options

  • Alo
  • Bsit0
  • Cwlan0
  • Dvlan0
  • Eeth0

How the community answered

(21 responses)
  • A
    81% (17)
  • B
    10% (2)
  • C
    5% (1)
  • E
    5% (1)

Why each option

The loopback interface 'lo' is the only network interface guaranteed to exist on every Linux system, as it is created by the kernel itself at boot regardless of hardware.

AloCorrect

The 'lo' loopback interface is automatically created by the Linux kernel during initialization and bound to the address 127.0.0.1. It does not depend on any physical hardware or additional configuration, making it the only interface universally present on all Linux systems. It is used for local inter-process communication and is essential for many system services.

Bsit0

sit0 is a virtual tunnel interface for IPv6-in-IPv4 encapsulation and is only present when that tunneling feature is loaded or configured.

Cwlan0

wlan0 is a wireless LAN interface that only exists when a compatible wireless hardware adapter is present in the system.

Dvlan0

vlan0 is a VLAN sub-interface that must be explicitly created and configured by an administrator; it does not exist by default.

Eeth0

eth0 is a wired Ethernet interface that depends on physical network hardware being present, and modern Linux distributions may use predictable naming (e.g., ens3, enp0s3) instead.

Concept tested: Linux loopback network interface fundamentals

Source: https://www.kernel.org/doc/html/latest/networking/loopback.html

Topics

#loopback interface#network interfaces#lo#Linux networking

Community Discussion

No community discussion yet for this question.

Full 010-150 Practice