Open the lab

[ YOUR LAB FILE ]

Download the starting topology, then work through the lesson in SwitchLab.

Download SwitchLab Lab (.swlab)

  1. Save the .swlab file without renaming its extension.
  2. Open SwitchLab. Import and export controls currently require a desktop-width window. On a smaller screen, Tools → Fit brings the topology into view.
  3. Select Import Sandbox (folder icon), choose the downloaded file, and confirm the device and cable counts below.
  4. Select a device, then choose Open device on desktop or its name in the bottom bar on smaller screens. Select CLI for switches/routers or Desktop → Terminal for PCs. Enter enable only when the prompt ends in >.
  5. Follow this page beside the simulator. Use a free account to export your work. Reimport the original download to restart; export any work you want to keep first.

Prerequisites

  • Complete Ethernet, VLAN and IPv4 addressing fundamentals.

Follow the CCNA study path · Browse all SwitchLab labs

Topology

Configure a Switch Management Address and Local Account: starting network imported into the SwitchLab sandbox.
Starting topology captured in SwitchLab. Select the image to view it at full size.

2 devices · 1 links

Scenario

A branch switch carries a directly connected admin workstation but has no management IP or local administrator account. Apply the documented local management baseline.

Objectives

  • Establish a reachable management address and identifiable switch configuration.
  • Configure the approved local account and console authentication policy.

CCNA blueprint

200-301 v1.1 objectives — this lab covers the following specific skills, not every subtopic in the domain.

  • 5.3 — Configure device access control using local passwords.

Starting information

  • Admin workstation PC1 is 192.168.99.10/24 on VLAN 1. The switch management SVI is 192.168.99.2/24. No default gateway is needed for this local test.
  • Approved hostname: SW1. Isolated lab account: labadmin with password LabAccess42 and privilege 15. These public exercise credentials are not a production password recommendation.
  • Keep the physical access port enabled in VLAN 1; an SVI needs a working VLAN path.
HostIPv4 addressMaskGateway
PC1192.168.99.10255.255.255.0None
Device / portDevice / port
PC1 / eth0SW1 / g0/1

Tasks

  1. Inspect the starting running configuration and test PC1 → 192.168.99.2.
  2. Apply the approved identity, local account and management SVI and console local-login configuration.
  3. Verify the saved running configuration and management reachability.
  4. Save/export and reload. Confirm the hostname, management IP and local-login configuration remain present. This lesson verifies configuration and IP reachability; the next lesson exercises interactive remote authentication.

Useful commands

show running-config
show ip interface brief
copy running-config startup-config

Progressive hints

Hint 1

Separate management-IP reachability from authentication and remote transport configuration.

Hint 2

SSH requires a usable host identity/domain, keys, a local account and VTY settings that allow SSH.

Hint 3

Apply the approved SVI and account first; for SSH use login local and transport input ssh on VTY lines 0–4, then test from PC1.

Verification

  • PC1 reaches 192.168.99.2.
  • The hostname and approved management/account configuration survive export/reload.

Solution / walkthrough

Show Solution

Use enable only from a > prompt; if already at #, begin with configure terminal.

SW1

Configure only the exercise management baseline. Use the PC for the remote authentication test rather than treating local console output as proof of SSH access.

enable
configure terminal
username labadmin privilege 15 password LabAccess42
interface vlan 1
ip address 192.168.99.2 255.255.255.0
no shutdown
exit
line console 0
login local
end
copy running-config startup-config

Run every verification check above after the changes. A saved configuration alone does not prove packet delivery.

Previous lab

Repair Reversed NAT Interface Roles

Related labs

Related articles and tools

Next recommended lab

Configure and Verify Authenticated SSH Access