Courseiva
Network Client ManagementmediumMultiple SelectObjective-mapped

LPIC-2 Network Client Management Practice Question

Which TWO options in dhcpd.conf are used to define the subnet and the address range for dynamic allocation? (Select two.)

⚠ Common exam trap

LPI often tests the distinction between the `subnet` declaration (which defines the network boundary) and the `option subnet-mask` statement (which is a client-facing parameter), leading candidates to incorrectly select the option as a definition of the subnet itself.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

range 192.168.1.10 192.168.1.100;

The `range` directive in `dhcpd.conf` explicitly defines the pool of IP addresses available for dynamic (DHCP) allocation. Option E is correct because the `subnet` declaration specifies the network segment and netmask, creating the context in which the `range` statement must be nested to function. Together, they define both the subnet boundary and the dynamic address pool.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • option subnet-mask 255.255.255.0;

    Why it's wrong here

    Sets a DHCP option, not the subnet or range.

  • pool { ... }

    Why it's wrong here

    A container for ranges, but not the primary definition of subnet/range.

  • range 192.168.1.10 192.168.1.100;

    Why this is correct

    Defines the dynamic address pool.

  • host fixed-address 192.168.1.200;

    Why it's wrong here

    Used for static assignments.

  • subnet 192.168.1.0 netmask 255.255.255.0 { ... }

    Why this is correct

    Defines the subnet.

Visual reference

Client DHCP Server 1 Discover (broadcast) 2 Offer (IP: 192.168.1.10) 3 Request (I accept) 4 Acknowledge (lease confirmed) DORA — the four-step DHCP lease process

About these practice questions

One of 507 original LPIC-2 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This LPIC-2 practice question is part of Courseiva's free LPI certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the LPIC-2 exam.