Section 4: Cisco IOS Flashcards

1
Q

NX-OS

A
  • Cisco Nexus and MDS data center switch
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

IOS-XR

A
  • NCS
  • CRS
  • ASR9000
  • XR12000
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

IOS-XE

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

IOS

A
  • remains the OS used on the majority of Cisco enterprise grade network devices
  • other OS have been developed for some more recent router and switch platforms
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What needs to be done before a Cisco device can be connected to over the network?

A
  • assign IP address
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What console cable is used to directly connect to a Cisco device for initial configuration?

A
  • DB9 (serial) to RJ45
  • Called DB9 because 9 pins go into the cable connector
  • Requires a USB to Serial adapter in order to connect the DB9 end to the laptop
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you know that you are in user exec mode?

A

ROUTER>

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

What command allows you to see the available commands?

A

ROUTER> ?

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

What command enters privileged exec mode?

A

ROUTER> enable
or
ROUTER> en

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

How do you know you are in privileged exec mode?

A

ROUTER#

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

What command switches back to user exec mode from privilege exec mode?

A

ROUTER# disable

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

What command allows you to see all the commands that start with ‘sh’?

A

ROUTER# sh?

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

How would you show all the possible “show” commands?

A

ROUTER# sh ? (add a space between ‘sh’ and ‘?’)
or
ROUTER# show ?

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

When you enter “sh run ?”, one of the options is …what does this mean?

A
  • that you could enter “sh run” as a command and that would be complete
  • nothing else needs to come after ‘run’ in the command
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the command to get to the global configuration mode?

A

ROUTER# configure terminal
or
ROUTER# conf t

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

How do you know when you are in global configuration mode?

A

ROUTER(config)#

- there is (config) in the prompt

17
Q

How do you execute the “show” command in global config mode?

A

ROUTER(config)# do show

18
Q

What command displays the available interfaces on the router?

A

ROUTER(config)# do show ip interface brief

19
Q

What command would you enter to configure the interface FastEthernet0/0?

A

ROUTER(config)# interface fastEthernet 0/0

20
Q

How do you know that you are in Interface Configuration mode?

A

ROUTER(config-if)#

21
Q

Can you go directly to Interface Configuration mode from user exec mode?

A
  • No, you must first go to the Global Config mode
22
Q

What command shows the enter Router config?

A

ROUTER# show running-config

23
Q

What command shows the config for the FastEthernet 0/0?

A

ROUTER# sh run int fast0/0

24
Q

What command shows the the running config starting at “hostname”, and then everything afterwards?

A

ROUTER# sh run | begin hostname

25
Q

What command shows the lines in the running config that start with the word “interface”?

A

ROUTER# sh run | in int

- ‘in’ is short for ‘include’

26
Q

What command shows the entire “interface” section in the running config?

A

ROUTER# sh run | section interface