Basic Device Configuration Flashcards

1
Q

How do you change host name?

A

enable,
configure t,
hostname name

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

how do you add a password to user EXEC mode?

A

enable,
configure t,
line console 0,
password cisco,
login,
end

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

How do you add a password to privileged EXEC mode?

A

enable,
configure t,
enable secret class,
exit

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

How do you add a password to VTY lines?

A

enable,
configure t,
line vty 0 15
password cisco,
login,
end

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

What does Virtual Terminal(VTY) lines do?
How many can a switch support up to?

A

enable remote access using Telnet or SSH to the device. Many Cisco switches support up to 16 VTY lines that are numbered 0 to 15.

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

How To encrypt all plaintext passwords, use theservice password-encryptionglobal config command?

A

enable,
configure t,
service password-encryption

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

How can you verify that passwords are now encrypted?

A

end,
show running-config

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

What are the two system files that store the device configuration?

A

Startup-config, and Running-config

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

Which of the two system files save the configuration file in NVRAM?

startup-config or running-config?

A

Startup-config

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

Which of the two system files the save configuration in Random Access Memory(RAM)?

Startup-config or Running-config?

A

Running-config

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

Which EXEC mode can you use the command :
show running-config?

A

Privileged EXEC Mode

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

How can you view the running or startup configuration?

A

show running-config, or show startup-config

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

How do you save changes made to the running configuration to the startup configuration file?

A

copy running-config startup-config , or

copy runn start

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

Which running-config privileged EXEC command, can let you go back to the last saved configuration if not saved yet?

A

reload command and after the reload is done, enter n or no to not save the changes. but it can take a while to reload the device

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

Another way to go to the last saved startup-config is to clear all configurations. How do you do that?

A

erase startup-config in privileged EXEC mode command. After reloading the device remove the current running-config file from the RAM. On reload, a switch will load the default startup-config that initially shipped with the device

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

Can you save the configuration to a file?

A

Yes, you can

17
Q

The structure of an IPv4 address is called ____ and is represented by four decimal numbers between__and ___.

A

dotted decimal notation, 0 and 255

18
Q

With the IPv4 address, a_______ is also necessary. An IPv4 subnet mask is a __-bit value that differentiates the network portion of the address from the host portion. Coupled with the IPv4 address, the subnet mask determines to which subnet the device is a member.

A

subnet mask,32-bit

19
Q

IPv6 addresses are ___ bits in length and are written as a string of hexadecimal values. Every four bits is represented by a single hexadecimal digit; for a total of 32 hexadecimal values. Groups of four hexadecimal digits are separated by a colon (:). IPv6 addresses are not case-sensitive and can be written in either lowercase or uppercase.

A

128

20
Q

IPv4 address information can be entered into end devices manually or automatically using ________.

A

Dynamic Host Configuration Protocol (DHCP).

21
Q

To access the switch remotely, an IP address and a subnet mask must be configured on the SVI. To configure an SVI on a switch, use theinterface vlan 1global configuration command.

How do you do that?

A

enable,
configure t,
interface vlan 1,
ip address 192.168.1.20 255.255.255.0,
no shutdown