Courseiva

200-301 · topic practice

IPV6 practice questions

Practise CCNA 200-301 v2 IPV6 practice questions — original exam-style scenarios with answer choices, explanations, and analysis of common mistakes.

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

What the exam tests

What to know about IPV6

IPv6 questions usually test address types (link-local, global unicast, ULA), autoconfiguration (SLAAC), Neighbor Discovery Protocol and the differences from IPv4.

IPv6 address types and their scopes (link-local, global unicast, multicast, ULA).

SLAAC vs DHCPv6 vs stateful assignment.

Neighbor Discovery Protocol replacing ARP.

IPv6 routing differences and dual-stack coexistence.

Watch out for

Common IPV6 exam traps

  • Link-local addresses are not routable beyond the local link.
  • SLAAC uses EUI-64 or random interface IDs — not a DHCP server.
  • NDP uses ICMPv6, not ARP.
  • An IPv6 prefix is /64 for most host subnets, not /24.

Practice set

IPV6 questions

20 questions · select your answer, then reveal the explanation

Question 1mediummulti select
Study the full ACL explanation →

Which TWO statements about IPv4 and IPv6 ACLs are true?

Question 2hardmultiple choice
Study the full IPv6 explanation →

A network administrator is troubleshooting an IPv6 connectivity issue on a newly deployed router. The router's G0/0/0 interface is configured with an IPv6 address using EUI-64, but hosts on that subnet cannot reach the router's link-local address. The administrator runs 'show ipv6 interface g0/0/0' and sees that the interface is up/up but the IPv6 address is not in the expected format. What is the most likely cause of the problem?

Exhibit

Router# show ipv6 interface g0/0/0
GigabitEthernet0/0/0 is up, line protocol is up
  IPv6 is enabled, link-local address is FE80::21A:2BFF:FE3C:4D5E
  No global unicast address is configured
  Joined group address(es):
    FF02::1
    FF02::2
    FF02::1:FF3C:4D5E
  MTU is 1500 bytes
  ICMP error messages limited to one every 100 milliseconds
  ICMP redirects are enabled
  ICMP unreachables are sent
  ND DAD is enabled, number of DAD attempts: 1
  ND reachable time is 30000 milliseconds (using 30000)
  ND advertised reachable time is 0 (unspecified)
  ND advertised retransmit interval is 0 (unspecified)
  ND router advertisements are sent every 200 seconds
  ND router advertisements live for 1800 seconds
  ND advertised default router preference is Medium
  Hosts use stateless autoconfiguration for addresses.
Question 3hardmultiple choice
Study the full IPv6 explanation →

An IPv6 host successfully reaches neighbors on its local segment, but it cannot reach remote IPv6 destinations. The host has a global unicast address and a correct prefix length. Which missing item is the strongest suspect?

Question 4mediummultiple choice
Study the full IPv6 explanation →

Which IPv6 address type is automatically created on an interface and used for communication on the local link only?

Question 5hardmultiple choice
Study the full ACL explanation →

A standard ACL and an extended ACL are both available for a design. Which requirement most strongly indicates that an extended ACL is needed?

Question 6hardmultiple choice
Review the full OSPF breakdown →

Two directly connected routers running OSPFv3 do not form an adjacency. Both interfaces have valid IPv6 addresses and can ping each other using link-local addresses. What is the most likely cause?

Exhibit

R1#
interface GigabitEthernet0/0
 ipv6 address fe80::1 link-local
 ipv6 ospf 10 area 0
!
ipv6 router ospf 10
 router-id 1.1.1.1

R2#
interface GigabitEthernet0/0
 ipv6 address fe80::2 link-local
 ipv6 ospf 10 area 1
!
ipv6 router ospf 10
 router-id 2.2.2.2
Question 7hardmultiple choice
Study the full IPv6 explanation →

What is the main purpose of this configuration?

ipv6 route 2001:db8:100::/64 GigabitEthernet0/0

Exhibit

R1(config)# ipv6 route 2001:db8:100::/64 GigabitEthernet0/0

You are connected to R1. The network administrator has partially configured IPv4 and IPv6 on the interfaces. However, PC1 (connected to R1's G0/1) cannot reach PC2 (connected to R2's G0/1). Configure R1 and R2 so that PC1 can ping PC2. Fix any addressing errors. Use IPv4 subnet 192.0.2.0/30 for the link between R1 and R2, and 198.51.100.0/24 for the PC LANs. For IPv6, use 2001:db8:1::/64 on R1's G0/1 and 2001:db8:2::/64 on R2's G0/1, with R1's G0/1 using EUI-64 and R2's G0/1 using a static address 2001:db8:2::1/64.

Exhibit

R1#show running-config
...
interface GigabitEthernet0/0
 ip address 192.0.2.1 255.255.255.0
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 ip address 198.51.100.1 255.255.255.0
 ipv6 address 2001:db8:1::/64 eui-64
 duplex auto
 speed auto
!
ip route 0.0.0.0 0.0.0.0 192.0.2.2
...
R2#show running-config
...
interface GigabitEthernet0/0
 ip address 192.0.2.2 255.255.255.252
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 ip address 198.51.100.2 255.255.255.0
 ipv6 address 2001:db8:2::1/64
 duplex auto
 speed auto
!
...
PC1: IP 198.51.100.10/24, gateway 198.51.100.1
PC2: IP 198.51.100.20/24, gateway 198.51.100.2

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)

You are connected to R1 via the console. R1 has two directly connected interfaces: G0/0 to R2 (IPv4 only) and G0/1 to a LAN switch (dual stack). Your task: configure IPv4 and IPv6 default routes on R1 pointing to R2 (next-hop 10.0.0.2 and 2001:db8:1::2). Also configure a floating static route to 192.0.2.0/24 via R2 with an administrative distance of 10 (so it is used only if the directly connected route fails). The current running-config shows an incorrect static route that causes recursive routing failure. Identify and fix the issue.

Exhibit

R1# show running-config | section ip route
ip route 0.0.0.0 0.0.0.0 10.0.0.2
ip route 192.0.2.0 255.255.255.0 10.0.0.1
!
R1# show running-config | section ipv6 route
ipv6 route ::/0 2001:db8:1::2
!
R1# show ip route static
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is 10.0.0.2 to network 0.0.0.0

S*   0.0.0.0/0 [1/0] via 10.0.0.2
S    192.0.2.0/24 [1/0] via 10.0.0.1 - recursive failure
Question 11hardmultiple choice
Review the full OSPF breakdown →

A network engineer is troubleshooting OSPFv3 adjacency between two directly connected Cisco routers, R1 and R2, both running IOS-XE. The engineer configures OSPFv3 on both routers but notices that the adjacency does not form. The engineer runs 'show ospfv3 neighbor' on R1 and sees no neighbors. What is the most likely cause of this issue?

Exhibit

R1# show ospfv3 neighbor

          OSPFv3 1 address-family ipv6 (router-id 1.1.1.1)

Neighbor ID     Pri   State           Dead Time   Interface ID    Interface

R1# show ipv6 interface brief
GigabitEthernet0/0   [up/up]
    FE80::1
GigabitEthernet0/1   [up/up]
    FE80::2

R1# show running-config | section router ospfv3
router ospfv3 1
 address-family ipv6
  router-id 1.1.1.1
  area 0
  interface GigabitEthernet0/0
  interface GigabitEthernet0/1

R1# show running-config interface GigabitEthernet0/0
interface GigabitEthernet0/0
 ipv6 address FE80::1 link-local
 ipv6 ospfv3 1 ipv6 area 0
!
Question 12mediummultiple choice
Study the full IPv6 explanation →

Which command enables IPv6 routing on a Cisco router?

Question 13hardScenario
Review the full OSPF breakdown →

You are connected to R1. Configure OSPFv3 for IPv6 on R1 and R2 so that the loopback0 interface on R1 (IPv6 address 2001:db8:1::1/64) can ping the loopback0 interface on R2 (IPv6 address 2001:db8:2::1/64). The routers are connected via their GigabitEthernet0/0 interfaces using IPv6 addresses 2001:db8:12::1/64 (R1) and 2001:db8:12::2/64 (R2). OSPFv3 process ID 100 must be used, and all interfaces must be in area 0.

Exhibit

R1# show running-config | section ipv6
ipv6 unicast-routing
!
interface Loopback0
 ipv6 address 2001:DB8:1::1/64
!
interface GigabitEthernet0/0
 ipv6 address 2001:DB8:12::1/64
 no shutdown
!
end

R2# show running-config | section ipv6
ipv6 unicast-routing
!
interface Loopback0
 ipv6 address 2001:DB8:2::1/64
!
interface GigabitEthernet0/0
 ipv6 address 2001:DB8:12::2/64
 no shutdown
!
end
Question 14mediummulti select
Study the full IPv6 explanation →

Which two statements accurately describe CAPWAP in a controller-based WLAN context?

Question 15hardScenario
Review the full OSPF breakdown →

You are connected to R1 via console. R1 and R2 are directly connected via their GigabitEthernet0/0 interfaces. Configure OSPFv3 for IPv6 on both routers so that the loopback0 interface on R2 (with IPv6 address 2001:db8:acad:2::1/64) is reachable from R1. Enable IPv6 unicast routing, enable OSPFv3 on the appropriate interfaces, and verify the neighbor adjacency and routing table. (Note: R2 already has OSPFv3 configured and is waiting for R1 to complete its configuration.)

Exhibit

R1# show running-config | section ipv6
ipv6 unicast-routing
!
interface GigabitEthernet0/0
 ipv6 address 2001:db8:acad:1::1/64
 no shutdown
!
interface Loopback0
 ipv6 address 2001:db8:acad:1::100/64
 no shutdown
!
end

R1# show ipv6 interface brief
GigabitEthernet0/0      [up/up]
    FE80::1
    2001:db8:acad:1::1
Loopback0               [up/up]
    FE80::100
    2001:db8:acad:1::100
Question 16hardmultiple choice
Study the full IPv6 explanation →

A technician is troubleshooting a dual-stack network where an IPv6-only host cannot reach an IPv4 resource. The technician issues the show ipv6 interface brief command on the local router and notices the interface facing the host has a link-local address but no global unicast address. The technician then checks the running configuration and finds that the command ipv6 unicast-routing is missing. What is the most likely cause?

Question 17mediummultiple choice
Study the full IPv6 explanation →

A network administrator receives a report that a user on a Windows laptop cannot connect to the internet, although other devices on the same subnet are working. The administrator runs `ipconfig` on the laptop and sees an IP address of 169.254.15.22 with a subnet mask of 255.255.0.0 and no default gateway. Based on this output, what is the most likely cause of the connectivity issue?

Question 18mediummulti select
Study the full IPv6 explanation →

Which TWO statements about IPv4 and IPv6 static routing are correct?

Question 19mediumdrag order
Review the full OSPF breakdown →

Drag and drop the following steps into the correct order to explicitly configure OSPFv3 for IPv6 on a Cisco IOS-XE router, assuming no OSPFv3 routing process exists beforehand.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
Question 20hardmultiple choice
Review the full OSPF breakdown →

Two routers are directly connected over IPv6 and should form an OSPFv3 adjacency, but they do not. Link-local addressing is present on both interfaces. Which issue is most likely to prevent the adjacency?

Free account

Track your progress over time

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

Focused IPV6 sessions

Start a IPV6 only practice session

Every question in these sessions is drawn from the IPV6 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 IPV6?
IPv6 questions usually test address types (link-local, global unicast, ULA), autoconfiguration (SLAAC), Neighbor Discovery Protocol and the differences from IPv4.
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 IPV6 questions in a focused session?
Yes — the session launcher on this page draws every question from the IPV6 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.