02-04 Basic Device Configuration Flashcards

1
Q

What is the syntax to set the system clock in IOS?

A

clock set hh:mm:ss DD MON YYYY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the rules for naming a Cisco device?

A
  1. Start with a letter
  2. Can’t include spaces
  3. Letters, numbers, dashes
  4. End with letter or digit
  5. 64 chars or less
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How is user EXEC mode secured?

A

By securing the console port as follows:

line console 0
password $password
login

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of the “login” directive in the following code snippet?

line console 0
password $password
login

A

The login command enables password-based access to the line in question. If the password is configured without the login directive, password access will not be enforced.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How is privileged EXEC mode secured?

A

By setting an enable secret as follows:

enable secret $password

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How are virtual terminals secured?

A

By setting vty password access as follows:

line vty 0 15
password $password
login

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the purpose of the following command:

service password-encryption

A

to prevent unauthorized individuals from viewing passwords in the configuration file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Where is the startup-config file stored?

A

NVRAM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Where is the running-config file stored?

A

RAM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

While trying to solve a network issue, a technician made multiple changes to the current router configuration file. The changes did not solve the problem and were not saved. What action can the technician take to discard the changes and work with the file in NVRAM?

A

Issue the reload command without saving the running configuration.

DO NOT do a “copy start run” as that does not overwrite the running configuration, but rather has an additive, “merge” effect.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which command will display the current contents of non-volatile random-access memory (NVRAM)?

A

show startup-configuration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The enable secret and enable password are both configured on the same switch. Which one will be in effect?

A

the enable secret

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

A password was changed on a Cisco device after the service password-encryption command was enabled. If you configure any more passwords on the switch, will they be displayed in the configuration file as plain text or in encrypted form?

A

encrypted, as long as service password-encryption remains enabled on the device

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Service password-encryption was removed from the configuration of a Cisco device. Will existing passwords remain encrypted or be decrypted? What if a password is changed?

A

Existing passwords will remain encrypted, but any new/changed passwords will be stored in clear-text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly