1.6.4 Module Quiz: Mastering Basic Device Configuration
If you're working through Cisco's networking curriculum, you've probably hit module 1.Day to day, 6. The 1." You're not alone. 4 and thought, "Wait, there's a quiz on this?Practically speaking, 6. 4 module quiz on basic device configuration catches a lot of students off guard — not because the material is impossibly hard, but because it asks you to pull together concepts you've been learning piecemeal and apply them all at once.
Here's the thing: basic device configuration is the foundation everything else builds on. Skip it, and you'll struggle later. Nail it now, and the rest of the course gets significantly easier.
What Is Basic Device Configuration in Networking?
Basic device configuration refers to the initial setup you perform on network devices like routers and switches to make them operational. We're talking about the commands and settings that transform a piece of hardware from a blank slate into something that can actually move traffic around your network Simple, but easy to overlook..
In the context of the 1.6.4 module, this includes several core areas:
Router and Switch Initial Setup
When you first power on a Cisco device, it's essentially empty. Practically speaking, you need to give it an identity, set up how you'll access it, and tell it which interfaces to use. This starts with entering privileged EXEC mode (that famous "enable" command), then moving into global configuration mode to make changes that affect the entire device.
This is where a lot of people lose the thread.
Hostname Configuration
Setting a hostname might seem cosmetic, but it matters more than you'd think. When you're managing dozens of devices, knowing which one you're configuring saves serious headaches. The command is simple — hostname Router1 or whatever naming convention your organization uses — but it's one of those basics the quiz will definitely test.
Password Configuration
This is where security starts. You'll configure multiple password types:
- Console password — controls access when connecting directly to the device
- Auxiliary password — for dial-up access (less common now, but still on the exam)
- VTY passwords — for Telnet and SSH access
- Enable password — the one that matters most, controlling privileged EXEC mode
The quiz will test whether you know which commands secure which access method, and the difference between encrypted and plain-text passwords.
Interface Configuration
This is where the real work happens. You need to know how to:
- Enter interface configuration mode
- Assign IP addresses (and subnet masks)
- Enable interfaces (they're shutdown by default on most devices)
- Set descriptions for documentation purposes
- Configure speed and duplex settings if needed
Saving Your Configuration
Here's what trips up a lot of students: changes you make in configuration mode don't automatically stick around after a reboot. That's why you need to copy your running configuration to startup configuration using copy running-config startup-config or the shorter wr mem command. Lose power before you do this, and all your work vanishes.
Why Basic Device Configuration Matters
Real talk — this module matters for three reasons that go beyond passing the quiz.
First, it's the baseline for everything else. Every advanced topic — VLANs, routing protocols, access lists, NAT — builds on your ability to configure a device correctly. If you can't set a hostname or secure your console line, you can't do anything else.
Second, the concepts show up everywhere. The principles of configuration mode, privilege levels, and saving your work aren't Cisco-specific. They translate to Juniper, Arista, and most other enterprise networking gear. Learn them once, use them for years.
Third, it's where most network outages start. You'd be amazed how many production issues come back to a missing no shutdown command, an interface that was never enabled, or a configuration that was never saved. The quiz is testing whether you'll be the person who causes those problems — or the person who fixes them.
How Basic Device Configuration Works
Let's walk through the actual process, step by step, the way you'd do it in the real world or the exam Not complicated — just consistent..
Step 1: Access the Device
You start at user EXEC mode (the > prompt). Here's the thing — your first job is to get to privileged EXEC mode (the # prompt) using the enable command. If a password is set, you'll need it here That's the part that actually makes a difference..
Step 2: Enter Global Configuration Mode
From privileged EXEC, type configure terminal or conf t to enter global configuration mode. This is where you make changes that affect the whole device That alone is useful..
Step 3: Set the Hostname
hostname [your-hostname]
Simple, but it changes your prompt, which is a good visual confirmation you're in the right place.
Step 4: Configure Passwords
For console access:
line console 0
password [your-password]
login
For VTY (remote) access:
line vty 0 4
password [your-password]
login
For privileged mode:
enable secret [your-password]
Note: use enable secret instead of enable password — the secret version uses MD5 encryption, which is what the exam expects.
Step 5: Configure an Interface
interface GigabitEthernet 0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
description Connected to LAN
The no shutdown command is the one people forget most often. Always double-check it.
Step 6: Save Your Work
copy running-config startup-config
Or if you're done and want to exit cleanly:
exit
exit
copy running-config startup-config
Common Mistakes Students Make on the 1.6.4 Quiz
After working with students on this material for years, certain mistakes come up over and over:
Forgetting to save the configuration. This is the number one error. The device works perfectly in your session, you log out, and then nothing works. Always save.
Confusing which password goes where. Students often mix up console, VTY, and enable passwords. Remember: console and VTY control access to the device, enable controls what you can do once you're in.
Leaving interfaces shutdown. Interfaces default to administratively down. You configure everything correctly, but the interface won't pass traffic because you forgot no shutdown.
Using the wrong encryption command. The quiz likely distinguishes between enable password (plain text) and enable secret (encrypted). Know which one to use That alone is useful..
Not understanding the difference between user EXEC and privileged EXEC. User EXEC lets you look but not touch. Privileged EXEC is where configuration happens. The quiz tests whether you know which mode allows which commands That's the part that actually makes a difference..
Practical Tips for Passing the Quiz
Here's what actually works:
Know your command prompts. The quiz will show you a prompt and ask what mode you're in. Switch> is user EXEC. Switch# is privileged EXEC. Switch(config)# is global configuration. Switch(config-if)# is interface configuration. This sounds basic, but it's where a lot of points get lost.
Memorize the key commands. You need these in your muscle memory: enable, configure terminal, hostname, line, interface, ip address, no shutdown, copy running-config startup-config And that's really what it comes down to..
Read the questions carefully. A lot of quiz questions hinge on one word. "Which command sets an encrypted enable password?" is different from "Which command sets an enable password?" — even though the answers look similar That's the part that actually makes a difference..
Don't overthink it. The 1.6.4 quiz tests fundamentals. If you understand the flow — get in, configure, save — you're probably ready Less friction, more output..
FAQ
What's the difference between enable password and enable secret?
enable password stores the password in plain text in the configuration file. enable secret encrypts it using MD5. Use enable secret for any real-world configuration — it's more secure and it's what the exam expects And that's really what it comes down to..
Do I need to use login on the console line?
Yes, if you want the console to actually require a password. Without login, anyone with physical access to the device can get in without authentication.
What does no shutdown actually do?
It changes the interface from administratively down to up. So by default, Cisco interfaces are shut down to prevent accidental network loops or issues. You have to explicitly enable every interface you want to use Small thing, real impact..
How do I verify my configuration is saved?
Use show running-config to see what's currently running. Use show startup-config to see what's saved in NVRAM. If they match, you're good.
Can I configure an IP address on a switch port?
Yes, but it's less common. Layer 2 switches forward frames based on MAC addresses and don't normally need IP addresses. On the flip side, you need an IP address to manage the switch remotely, and that gets configured on a VLAN interface (usually VLAN 1), not a physical port.
You'll probably want to bookmark this section.
The Bottom Line
The 1.Because of that, 6. 4 module quiz on basic device configuration isn't trying to trick you. It's checking whether you understand the absolute fundamentals of getting a network device up and running. Master these concepts now — hostname, passwords, interface configuration, saving your work — and you'll have a solid foundation for everything that comes next in your networking studies.
Don't skip the practice labs. Don't just memorize commands — understand what each one does and why it matters. That's the difference between passing the quiz and actually knowing how to configure a device Small thing, real impact..