Which database must be deleted to prevent network settings persisting on a reused switch?
A company is sending a switch to a remote site to be reused. An administrator needs to move the switch and ensure no network settings persist. Which of the following databases does the administrator need to delete?
Community Votes
55% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests your ability to differentiate between persistent switch databases and volatile caches; the trap is confusing ARP cache (RAM) with the VLAN database (NVRAM/flash).
When moving a switch to a remote site, the VLAN database (vlan.dat) must be deleted to prevent old network settings from persisting. Community consensus from CompTIA Network+ N10-008 candidates favors A (VLAN) over C (ARP), since ARP cache is dynamic and rebuilt automatically.
The most common wrong answer is ARP (C), likely because candidates see 'network settings' and immediately think of IP-to-MAC mappings. However, ARP cache is temporary and does not persist when the switch is powered off, so it is not a database that requires deletion.
Community Discussion (8 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
VLAN configurations are stored in a persistent database (vlan.dat) on Cisco switches. Without deleting this database, the switch retains all previous VLAN definitions, which could conflict with the remote site's network design. The administrator can delete the VLAN database with thedelete vlan.dat command or by using write erase followed by a full reset.Why the Other Options Are Wrong
B. STP (Spanning Tree Protocol) is a Layer 2 protocol, not a database; changing the network triggers STP recalculation automatically. C. ARP cache is held in RAM and is rebuilt as the switch learns new IP-to-MAC mappings, so there is no need to delete a persistent ARP database. D. Trunking is an interface property (e.g.,switchport mode trunk) that is cleared when the switch's startup configuration is erased, but it is not a separate database.Community Comment Notes
Several commenters correctly noted that ARP does not contain permanent settings and will be regenerated on the new network (comment 3), while others explicitly identified the VLAN database as the required deletion (comments 4 and 5). The initial vote split (55% C vs 45% A) shows how easily test-takers confuse a dynamic cache with a persistent database, but the correct CompTIA answer is A, VLAN.Official Reference
Exam Strategy
Look for the word 'database' on switch questions — it almost always points to persistent stored configuration like VLAN or startup-config, not dynamic caches like ARP. When in doubt, ask yourself: will this setting survive a power cycle? If not, it doesn't need to be deleted for a move.