§ — — Network Administration
Network devices should be configured in a predictable and secure way before they are placed into production. This module focuses on the first tasks usually performed on Cisco switches and routers: preparing a switch for management, configuring switch ports, enabling secure remote access, setting up basic router interfaces, and verifying that directly connected networks can communicate.
By the end of this module, you should be able to:
When a Cisco switch powers on, it performs several startup steps before the operating system becomes available:
The switch can use a configured boot variable to determine which IOS image to load. If no boot variable is set, it normally attempts to boot from the first valid executable image it finds in flash.
Use these commands to check or set the IOS boot image on a switch.
Switch# show boot
Switch# configure terminal
Switch(config)# boot system flash:c2960-lanbasek9-mz.150-2.SE/c2960-lanbasek9-mz.150-2.SE.bin
Switch(config)# end
Switch# copy running-config startup-config
Check yourself: Identify the storage device, folder path, and IOS filename in the boot system command.
Free Sample
That was 1 of 59 reviewers with answer keys in Network Administration. Unlock all of them for the semester.
Unlock all reviewers →Switch LEDs provide quick physical clues about device status. Common indicators include:
The mode button changes what port LEDs represent. For example, in STAT mode a solid green port LED usually indicates link up, while a blinking green LED commonly represents traffic activity. Amber or alternating colors usually indicate a blocked port, fault, or power-related issue.
If IOS cannot load because system files are missing or damaged, the boot loader can be used for recovery. A console connection is required. The common recovery idea is:
Useful boot loader commands include directory inspection commands such as dir.
A Layer 2 switch does not need an IP address to forward Ethernet frames, but it does need one for remote management. Management access is normally configured through a Switch Virtual Interface (SVI).
An SVI is a logical VLAN interface, not a physical port. The management SVI should have:
no shutdown,For better security, avoid using VLAN 1 as the management VLAN when possible.
ProReviewer — locked
Drills, code labs, and full solutions.
A switch port can operate in half-duplex or full-duplex mode.
Modern wired Ethernet networks should use full-duplex whenever possible. Gigabit and faster Ethernet links normally operate in full-duplex mode.
Switch ports can use automatic negotiation or manual settings. Autonegotiation is useful when the connected device may vary, while manual configuration is common for known infrastructure devices such as servers, routers, and uplinks.
Auto-MDIX allows the switch to automatically handle straight-through or crossover cable requirements. On devices that support it, the port can adjust to the cable type automatically. Auto-MDIX works best when speed and duplex are set to auto.
ProReviewer — locked
Drills, code labs, and full solutions.
Use show commands to confirm configuration and troubleshoot problems.
| Task | Command |
|---|---|
| Display interface details | show interfaces [interface-id] |
| Display startup configuration | show startup-config |
| Display active configuration | show running-config |
| Show flash contents | show flash |
| Show hardware and IOS version | show version |
| Show command history | show history |
| Show IP interface information | show ip interface [interface-id] |
| Show IPv6 interface information | show ipv6 interface [interface-id] |
| Show MAC address table | show mac address-table |
The first line of show interfaces is important. For example:
FastEthernet0/18 is up, line protocol is up
The first status describes the physical layer. The second describes the data link layer.
shutdown command.Interface counters help identify performance problems even when the link is technically up.
| Counter | Meaning |
|---|---|
| Input errors | Total receive-side errors, including CRC, runts, giants, overruns, and ignored frames. |
| Runts | Frames smaller than the Ethernet minimum size. |
| Giants | Frames larger than the allowed Ethernet frame size. |
| CRC errors | Frames whose checksum does not match, often due to noise, bad cabling, or damaged connectors. |
| Output errors | Send-side errors that prevented frames from being transmitted. |
| Collisions | Frames retransmitted because of collisions, normally associated with half-duplex links. |
| Late collisions | Collisions detected too late in frame transmission, often caused by excessive cable length or duplex mismatch. |
ProReviewer — locked
Drills, code labs, and full solutions.
Telnet uses TCP port 23 and sends usernames, passwords, and session data in plaintext. Because anyone capturing traffic can read the login details, Telnet should not be used for production device management.
SSH uses TCP port 22 and encrypts the management session. It protects both authentication and command traffic. For network administration, SSH should be the standard remote access method.
ProReviewer — locked
Drills, code labs, and full solutions.
A router forwards traffic between different networks. At minimum, a router should have:
ProReviewer — locked
Drills, code labs, and full solutions.
A loopback interface is a logical router interface that stays up as long as the router is running. It is useful for testing, management, routing protocol identification, and stable reachability.
ProReviewer — locked
Drills, code labs, and full solutions.
After router interfaces are configured, use verification commands to check status and routes.
| Task | Command |
|---|---|
| Brief IPv4 interface status | show ip interface brief |
| Brief IPv6 interface status | show ipv6 interface brief |
| Detailed interface information | show interfaces |
| IPv4 routes | show ip route |
| IPv6 routes | show ipv6 route |
| Running configuration | show running-config |
| Filter output | `show running-config |
A directly connected route normally appears when the interface has an address, the interface is up, and the line protocol is up.
ProReviewer — locked
Drills, code labs, and full solutions.
Done with this module? Track it — your progress shows on the subject list.
Up next
Switching Concepts→