Why was this message received?

Refer to the exhibit.

Why was this message received?

Refer to the exhibit.

Why was this message received?

A.
No VTY password has been set.

B.
No enable password has been set.

C.
No console password has been set.

D.
No enable secret password has been set.

E.
The login command has not been set on CON 0

F.
The login command has not been set on the VTY ports.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


ish

ish

When you’re connecting to a Cisco router or switch, you’re going to use one of two methods:

Physically connecting a laptop/PC to the switch or router
Connecting from a remote location via Telnet or SSH

Console lines are used for the 1st case i.e. when you connect physically.

The console port is mainly used for local system access using a console terminal.

VTY lines are used for the 2nd case i.e. when you connect remotely.

Setting the Enable, Console, and vty Passwords on R1
R1>enable
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#enable password falcons
R1(config)#line con 0
R1(config-line)#password falcons
R1(config-line)#exit
R1(config)#line vty 0 4
R1(config-line)#password falcons
R1(config-line)#^Z
R1#
%SYS-5-CONFIG_I: Configured from console by console
R1#copy running-config startup-config
Building configuration…
[OK]
R1#

AU 79

AU 79

Abbreviated as VTY, virtual teletype is a command line interface that enables users to connect to the daemon using the Telnet protocol. To connect to a VTY users must setup and use a VTY password.

In multitasking computer operating systems, a daemon is a computer program that runs as a background process, rather than being under the direct control of an interactive user.