Free Cisco 100-490 Exam Actual Questions

The questions for 100-490 were last updated On Jan 19, 2025

Question No. 1

TFTP is a simple protocol for transferring files, such as a Cisco IOS or configuration file, from one device to another. Which device can be configured as a TFTP server?

Show Answer Hide Answer
Correct Answer: C

Cisco routers can be readily configured to act as TFTP servers, allowing them to provide Cisco IOS images or configuration files to other devices. Here's why this is the correct answer:

Software Support: Cisco IOS includes built-in support for the TFTP protocol, making it easy to set up a TFTP server on a router.

Storage Capacity: Routers typically have flash memory where IOS images and other files can be stored, making them suitable repositories for TFTP transfers.

Network Accessibility: Routers play a central role in networks, making them an accessible location for TFTP file transfers.

Why other options are incorrect:

Cisco Content Engine: Content Engines are specialized network appliances designed for caching and accelerating web content delivery. They typically don't have functionality for acting as generic TFTP servers.

Modem: Modems primarily modulate/demodulate signals to facilitate communication over traditional telephone lines. They lack the software capabilities to run a TFTP server.

CSU/DSU: Channel Service Unit/Data Service Units are devices used to interface with digital leased lines. They don't possess the necessary software to run a TFTP server.


Question No. 2

To which value is the configuration register changed to bypass the loading of the startup configuration when performing a password recovery on a Cisco device?

Show Answer Hide Answer
Correct Answer: D

The configuration register on Cisco devices controls how the device boots up. By changing the configuration register to 0x2142, you instruct the router to bypass the startup configuration file stored in NVRAM. This is crucial in the password recovery process because the passwords are stored in this configuration file.

Procedure for Password Recovery:

1. Break the boot sequence: Power cycle the router (turn off/on). During the boot process, send a 'Break' signal to get into ROMmon mode.

2. Change the configuration register: In ROMmon mode, type confreg 0x2142 and reload the router.

3. Boot without startup-config: The router will boot up, ignoring the saved startup configuration, allowing you to enter privileged EXEC mode without a password.

4. Change the password: Access configuration mode (configure terminal), and change the passwords as needed (enable password, enable secret, etc.).

5. Reset the configuration register: Set the configuration register back to its original value (usually 0x2102).

6. Save changes: Save the new configuration with copy running-config startup-config.


Question No. 5

Which Xmodem option is used to enhance error checking of an image that is copied to flash memory?

Show Answer Hide Answer
Correct Answer: C

The -c option in Xmodem file transfers is used to enable CRC (Cyclic Redundancy Check) for enhanced error checking. Here's why it's the correct answer:

Error Detection: CRC is a more robust error detection mechanism compared to the standard checksum method used in Xmodem. It provides greater reliability in identifying file corruption during the transfer.

Flash Memory: Since flash memory on a Cisco router or switch stores critical data like configuration files or the IOS image, ensuring the integrity of transferred files is crucial.

Why other options are incorrect:

-e, -r, -x: These are not standard Xmodem options for error checking purposes. While some implementations may have custom flags, they are not universally applicable.

Important Note: Xmodem is a legacy protocol that is often replaced by more reliable options like TFTP in modern Cisco devices. However, understanding Xmodem options is still relevant for certain cases or older equipment.


Xmodem overview: https://en.wikipedia.org/wiki/XMODEM

Cyclic Redundancy Check (CRC): https://en.wikipedia.org/wiki/Cyclic_redundancy_check