200-301 · topic practice

Subnetting practice questions

Practise 200-301 subnetting questions covering CIDR notation, subnet mask conversion, network and broadcast address calculation, usable host ranges, and determining which subnet a device belongs to.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Subnetting

What the exam tests

What to know about Subnetting

Subnetting questions test whether you can calculate network ranges, usable hosts, masks, prefixes and the correct subnet for a device.

CIDR notation and subnet mask conversion.

Network, broadcast and usable host ranges.

How many hosts or subnets are required.

Which subnet a given IP address belongs to.

Why learners struggle

Why Subnetting questions are commonly missed

Subnetting questions are missed when learners calculate the right subnet size but pick the wrong network address, forget to subtract network and broadcast addresses from usable hosts, or confuse the number of subnets with the number of hosts per subnet.

  • ·Network and broadcast are not usable — subtract 2 from the host count for every subnet
  • ·Block size — always a power of 2; 2^host-bits gives addresses per subnet
  • ·Which subnet a host is in — divide the host octet by block size to find the network address
  • ·Subnets vs hosts per subnet — different calculations that learners frequently swap
  • ·CIDR prefix vs subnet mask — /24 = 255.255.255.0, /25 = 255.255.255.128
  • ·A valid mask does not mean it meets the design requirement — check the host count

Watch out for

Common Subnetting exam traps

  • Network and broadcast addresses are not usable host addresses in normal IPv4 subnets.
  • Subnets and hosts per subnet are different calculations.
  • The prefix length must be checked against the block size.
  • A mathematically valid mask may still fail the design requirement.

Practice set

Subnetting questions

20 questions · select your answer, then reveal the explanation

You are connected to R1. Configure IPv4 and IPv6 addressing on R1's interfaces and verify reachability to R2. The current configuration has a wrong subnet mask on G0/0, missing default gateway for IPv4, and R1's IPv6 address is configured using EUI-64 while R2 uses a static IPv6 address. Fix these issues so that R1 can ping both R2's IPv4 and IPv6 addresses.

Exhibit

R1#show running-config
Building configuration...

hostname R1
!
interface GigabitEthernet0/0
 ip address 192.0.2.1 255.255.255.0
 ipv6 address 2001:db8:1::/64 eui-64
 no shutdown
!
interface GigabitEthernet0/1
 ip address 198.51.100.1 255.255.255.0
 ipv6 address 2001:db8:2::1/64
 no shutdown
!
ip route 0.0.0.0 0.0.0.0 192.0.2.254
!
end

R2#show running-config
Building configuration...

hostname R2
!
interface GigabitEthernet0/0
 ip address 192.0.2.2 255.255.255.252
 ipv6 address 2001:db8:1::2/64
 no shutdown
!
interface GigabitEthernet0/1
 ip address 203.0.113.1 255.255.255.0
 no shutdown
!
end

R1#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
GigabitEthernet0/0     192.0.2.1       YES manual up                    up
GigabitEthernet0/1     198.51.100.1    YES manual up                    up

R1#ping 192.0.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.0.2.2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)

R1#ping 2001:db8:1::2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:db8:1::2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
Question 2mediummulti select
Review the full subnetting walkthrough →

Which three of the following are correct steps in the process of CDP (Cisco Discovery Protocol) neighbor discovery? (Choose three.)

You are connected to R1 in a small office network. Configure PAT (NAT overload) so that hosts on the 192.168.1.0/24 LAN can access the Internet via the public IP 203.0.113.1 (the IP assigned to interface G0/0). Also configure a static NAT for the internal web server at 192.168.1.10 to the public IP 203.0.113.6. The current configuration has errors: the inside/outside interface assignments are swapped, the ACL for PAT does not match the inside subnet, and the PAT rule points to the wrong ACL. Fix all issues so that both PAT and static NAT work correctly.

Exhibit

R1# show running-config | section ip nat
ip nat inside source list 1 interface GigabitEthernet0/1 overload
ip nat inside source static tcp 192.168.1.10 80 203.0.113.6 80
!
ip nat inside source list 2 interface GigabitEthernet0/0 overload
!
interface GigabitEthernet0/0
 ip address 203.0.113.1 255.255.255.248
 ip nat inside
!
interface GigabitEthernet0/1
 ip address 192.168.1.1 255.255.255.0
 ip nat outside
!
access-list 1 permit 192.168.2.0 0.0.0.255
access-list 2 permit 192.168.1.0 0.0.0.255
Question 4mediummultiple choice
Review the full subnetting walkthrough →

A network administrator receives a call from a user who cannot access any external websites from their wired workstation. The user can ping the default gateway successfully, but fails to ping 8.8.8.8. The administrator runs ipconfig /all on the workstation and sees an IP address of 192.168.1.50, subnet mask 255.255.255.0, and default gateway 192.168.1.1. What is the most likely cause of this issue?

Question 5hardmultiple choice
Review the full OSPF breakdown →

R1 and R2 are directly connected. Both are configured in OSPF area 0, and they can successfully ping each other. However, OSPF neighbor adjacency fails. R1's interface is configured with `ip ospf authentication message-digest` and a valid key, while R2's interface has no OSPF authentication configured. What is the most likely cause?

Exhibit

R1#
interface GigabitEthernet0/0
 ip address 10.1.12.1 255.255.255.0
 ip ospf authentication message-digest
 ip ospf message-digest-key 1 md5 cisco123
!
router ospf 10
 network 10.1.12.0 0.0.0.255 area 0

R2#
interface GigabitEthernet0/0
 ip address 10.1.12.2 255.255.255.0
!
router ospf 10
 network 10.1.12.0 0.0.0.255 area 0
Question 6mediummulti select
Review the full subnetting walkthrough →

Which TWO commands or tools would a network engineer use to verify if a client has a duplicate IP address conflict on the local subnet?

Question 7mediumdrag order
Read the full DHCP explanation →

Drag and drop the following steps into the correct order to configure a Cisco IOS-XE router as a DHCP relay agent and verify the DHCP DORA process for a client on a different subnet.

Question 8easymultiple choice
Read the full NAT/PAT explanation →

A host sends traffic to a web server on another subnet. Which address is used as the destination MAC address in the first Ethernet frame sent by the host?

Question 9hardmultiple choice
Review the full subnetting walkthrough →

A router interface is configured with 192.0.2.97/28. What is the network address of the subnet?

Question 10hardmultiple choice
Read the full DHCP explanation →

A client connects to an employee WLAN using 802.1X authentication. The authentication process completes successfully, but the client fails to obtain an IP address via DHCP. What is the most likely cause?

Exhibit

Client observations:
- Joined SSID: Corp-Employee
- Authentication: success
- Assigned IP: 10.90.200.44/24
Expected employee subnet: 10.90.10.0/24
Observed guest subnet: 10.90.200.0/24
Question 11hardmultiple choice
Review the full OSPF breakdown →

An OSPF-enabled router R1 fails to advertise the 192.168.50.0/24 network to neighbor R2, even though the neighbor relationship is up. Which misconfiguration on R1 would cause this?

Exhibit

R1 interface to LAN: 192.168.50.1/24 on G0/1
R1 OSPF config:
 router ospf 1
  network 192.168.5.0 0.0.0.255 area 0
  network 10.0.12.0 0.0.0.3 area 0
Question 12hardmultiple choice
Review the full subnetting walkthrough →

A subnet uses the mask 255.255.255.224. How many usable host addresses does it provide?

Question 13hardmultiple choice
Review the full subnetting walkthrough →

A host with address 192.168.1.130/26 needs to identify its local subnet. Which subnet does it belong to?

Question 14hardmultiple choice
Review the full subnetting walkthrough →

A host has the address 10.10.10.94/27. Which subnet contains that host?

Question 15hardmultiple choice
Review the full subnetting walkthrough →

A subnet must support 14 usable hosts. Which prefix is the smallest that meets the requirement?

Question 16hardmultiple choice
Review the full subnetting walkthrough →

A host with address 172.16.5.10/23 wants to determine whether 172.16.6.20 is on the same local network. What is the correct conclusion?

Question 17hardmultiple choice
Review the full subnetting walkthrough →

A host is configured with IP address 172.16.100.222/27. Which address is the broadcast address for its subnet?

Question 18hardmultiple choice
Review the full subnetting walkthrough →

A subnet requires 200 usable host addresses. Which prefix is the smallest that meets the requirement?

Question 19hardmultiple choice
Review the full OSPF breakdown →

R1 and R2 are connected via a GigabitEthernet link in the same IPv4 subnet, and both routers have OSPF configured in the same area. However, R1 is not learning any OSPF routes from R2. What is the most likely cause?

Exhibit

R1#
router ospf 1
 network 10.20.12.0 0.0.0.255 area 0
 passive-interface GigabitEthernet0/0
!
interface GigabitEthernet0/0
 ip address 10.20.12.1 255.255.255.0

R2#
router ospf 1
 network 10.20.12.0 0.0.0.255 area 0
!
interface GigabitEthernet0/0
 ip address 10.20.12.2 255.255.255.0
Question 20hardmultiple choice
Review the full subnetting walkthrough →

A host is configured with 10.10.10.130/25. What is the network address of its subnet?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Subnetting sessions

Start a Subnetting only practice session

Every question in these sessions is drawn from the Subnetting domain — nothing else.

Related practice questions

Related 200-301 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the 200-301 exam test about Subnetting?
Subnetting questions test whether you can calculate network ranges, usable hosts, masks, prefixes and the correct subnet for a device.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Subnetting questions in a focused session?
Yes — the session launcher on this page draws every question from the Subnetting domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other 200-301 topics?
Use the topic links above to move to related areas, or go back to the 200-301 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the 200-301 exam covers. They are not copied from any real exam or dump site.