CCENT Concepts Pt. 7 Flashcards

1
Q

Startup-config

A

Stores the initial configuration used

any time te switch reloads Cisco IOS.

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

Running-config

A

Stores the currently used configuration
commands. This file changes
dynamically when someone enters
commands in configuration mode.

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

line console 0

A

Global command that changes the

context to console configuration mode.

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

line vty 1st-vty 2nd-vty

A

Global command that changes the
context to vty configuration mode for
the range of vty lines listed in the
command.

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

login

A

Line (console and vty) configuration
mode. Tells IOS to prompt for a
password (no username).

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

password pass-value

A

Line (console and vty) configuration
mode. Lists the password required if
the login command (with no other
parameters) is configured.

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

interface type port-number

A

Global command that changes the
context to interface mode - for
example, interface Fastethernet 0/1

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

(no) shutdown

A

Interface subcommand that
disables or enables the interface,
respectively.

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

hostname name

A

Global command that sets this switch’s
hostname, which is also used as the
first part of the switch’s command
prompt.

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

enable secret pass-value

A

Global command that sets
automatically encrypted enable secret
password. The password is used for
any user to reach enable mode.

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

enable password pass-value

A

Global command that sets the cleartext
enable password, which is used
only when the enable secret password
is not configured.

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

exit

A

Moves back to the next higher

mode in configuration mode.

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

end

A

Exits configuration mode and goes
back to enable mode from any of the
configuration submodes.

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

Ctrl-Z

A

This is nut a command, but rather a
two-key combination (the Ctrl key and
the letter z) that together do the same
thing as the end command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
Configuring Usernames and
Secure Sheel (SSH)
A
# Line vty 0 15
# transport input telnet ssh
# username user-value password pass-value
# ip domain-name domain-value
# crypto key generate rsa
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

show history

A

Lists the commands currently held

in the history buffer.

17
Q

history size x

A

From console or vty line configuration mode, sets
the default number of commands saved in the
history buffer for the user(s) of the console or vty
lines, respectively.

18
Q

terminal history size x

A

From EXEC mode, this command
allows a single user to set, just for this
one connection, the size of his or her
history buffer.

19
Q

Command to configure IP on a

switch

A
# configure terminal
# interface vlan 1
# ip address /network address/ /subnet/
# no shutdown
# exit
20
Q

show mac address-table dynamic

A

Lists the dynamically learned entries in

the switch’s address (forwarding) table.

21
Q

show dhcp lease

A

Lists any information the switch
acquires as a DHCP client. This
includes IP address, subnet, and
default gateway information.

22
Q

show crypto key mypubkey rsa

A

Lists the public and shared key created
for use with SSH using the crypto key
generate rsa global configuration
command.