[&] Which of the commands below is the correct IOS command to display the configuration file that is currently operational on your router or switch? **(select the best answer)** - `Device#show running-config` -- Correct - `Device>show configuration` - `Device#show configuration` - `Device>show running-config` [&] You wish to allow a Cisco IOS device to accept incoming Telnet requests as long as the requestor supplies the password of "INE". On the Cisco IOS device, which of the following answers displays how to accomplish this using the fewest commands possible? (Select the best answer) - ``` Device#configure terminal Device(config)#line vty 0 4 Device(config-line)#password INE Device(config-line)#login ``` - ``` Device#configure terminal Device(config)#line vty 0 4 Device(config-line)#login password INE ``` - ``` Device#configure terminal Device(config)#line vty 0 4 Device(config-line)#password INE ``` -- Correct - ``` Device#configure terminal Device(config)#line vty 0 4 Device(config-line)#login local password INE ``` [&] Which of the following commands is the correct way to change the name of a device (to INE-Router) as it is displayed by the Cisco IOS command prompt? (Select the best answer) - Device(config)#hostname INE-Router -- Correct - Device#hostname INE-Router - Device(config)#name INE-Router - Device#name INE-Router [&] You are logged into the CLI of your Cisco router. You issue a command and notice that interface FastEthernet0/0 is "Administratively Disabled". This interface is supposed to be up-and-functional. Which of the commands below (in correct sequential order) will bring up this interface? **(Select the best answer)** - ``` Router#enable Router(config)#interface FastEthernet0/0 Router(config-if)#no shutdown ``` - ``` Router#configure terminal Router(config)#interface FastEthernet0/0 Router(config-if)#no shutdown ``` -- Correct - ``` Router#enable Router(config)#interface FastEthernet0/0 no shutdown ``` - ``` Router#interface FastEthernet0/0 no shutdown ``` - ``` Router#interface FastEthernet0/0 Router(config-if)#no shutdown ``` [&] Which of the following commands on a Cisco IOS device will display the contents of the IPv4 Routing Table? (Select the best answer) - Device#show ip route -- Correct - Device>show ip route - Device>show route - Device#show route [&] On a Cisco IOS Switch, which of the following commands will verify if interface FastEthernet0/0 is operational, or is administratively disabled? (Select two answers) - show interfaces FastEthernet0/0 stats - show interfaces FastEthernet0/0 capabilities - show interfaces FastEthernet0/0 -- Correct - show ip interface brief -- Correct [&] You are on the CLI of a Cisco Router or Switch. Which of the prompts below would indicate that you are in the correct mode to add an IP address to this device? **(Select the best answer)** - `Device>` - `Device(config-if)#` -- Correct - `Device(config)#` - `Device#` [&] You are in the CLI of a Cisco Router or Switch. You wish to save your current, operational configuration file with a descriptive name of "Test-Config" to the same memory location that stores the Cisco IOS software image. Which of the following displays the correct IOS command to accomplish this task? **(Select the best answer)** - `copy run dram:Test-Config` - `copy start nvram:Test-Config` - `copy run flash:Test-Config` -- Correct - `copy run nvram:Test-Config` - `copy start flash:Test-Config` [&] Which of the following commands on a Cisco IOS device will display the contents of the configuration file that is currently active? (Select the best answer) - Device#show running-config -- Correct - Device>show running-config - Device>show active-config - Device#show active-config [&] Identify which of the commands below will allow you to save your current, operational configuration file so that the router/switch will revert back to using that same file when it reloads/power-cycles. **(Select two answers)** - `write erase` - `write memory` -- Correct - `copy config` - `copy run` - `copy running-config startup-config` -- Correct [&] Which of the IOS commands below will allow you to see a summarized view of all interfaces on your Router or Switch and determine their operational status, and if any have IP addresses configured? You have no interest in seeing physical-layer characteristics or errors of your interfaces. **(Select the best answer)** - `Device#show interface` - `Device>show interfaces` - `Device#show ip interface brief` -- Correct - `Device#show interface status` [&] You need to add the IP address of 2.2.2.2 255.255.0.0 to interface FastEthernet0/0. Which of the commands shown here are the correct way to do this in Cisco IOS? (Select the best answer) - ``` Device>enable Device#interface FastEthernet0/0 Device(config-if)#ip address 2.2.2.2 255.255.0.0 ``` - ``` Device>configure terminal Device(config)#interface FastEthernet0/0 Device(config-if)#ip address 2.2.2.2 255.255.0.0 ``` - ``` Device>enable Device#configure terminal Device#interface FastEthernet0/0 ip address 2.2.2.2 255.255.0.0 ``` - ``` Device#configure terminal Device(config)#interface FastEthernet0/0 Device(config-if)#ip address 2.2.2.2 255.255.0.0 ``` -- Correct [&] You have logged into a Router and see the prompt shown below. From this point, which of the answers below display the correct commands, in their correct sequential order, that would allow you to add an IP address of 1.1.1.1 255.0.0.0 to this router's FastEthernet0/0 interface? `Router>` **(Select the best answer)** - * `enable` * `config t` * `interface FastEthernet0/0` * `ip address 1.1.1.1 255.0.0.0` -- Correct - * `enable` * `config t` * `ip address 1.1.1.1 255.0.0.0` - * `enable` * `config t` * `FastEthernet0/0 ip 1.1.1.1 255.0.0.0` - * `interface FastEthernet0/0` * `ip address 1.1.1.1 255.0.0.0` [&] If, on a Cisco IOS device, I wish to secure access to Privileged EXEC mode with a password (of "INE") that is displayed as encrypted within the configuration file, which of the following commands will accomplish this? (Select the best answer) - Device(config)#enable secret INE -- Correct - Device(config)#enable password encrypt INE - Device(config)#password encrypt INE - Device(config)#enable password INE