• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/34

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

34 Cards in this Set

  • Front
  • Back
What command displays the ARP table?
arp -a (or arp /a)
What command displays some of the current IP settings?
ipconfig
What command displays all of the current IP settings?
ipconfig /all (or ipconfig -all)
What command causes an ICMP echo message to be sent to the destination, which should cause an ICMP echo reply message to be returned?
ping
What command is a troubleshooting tool that identifies routers along a path?
tracert
What command will identify routers along a path and not resolve addresses to hostnames?
tracert -d
What command allows entrance to the EXEC privileged mode?
>enable
What command will erase the startup configuration in the device's NVRAM?
#erase startup-config
If the startup-config is erased and the device loses power, what mode will the device be in when power is restored?
Initial Configuration
What command enters global configuration mode?
#configure terminal
(or #conf t)
What is the difference between the running configuration and the startup configuration?
Running-config is in RAM and will be lost when power is removed.
Startup-config is in NVRAM and will be kept until intentionally erased.
What command saves the running configuration into the startup configuration?
#copy running-config startup-config
(or #copy run start)
What command exits the configuration sub-mode and moves the prompt up one level?
(config-if-range)#exit
What command enters interface range configuration mode?
(config)#interface range *interface and range*

[Example: (config)#int range fa0/11 - 12]
What command defines the IP address of the default gateway?
(config)#ip default-gateway *ip address*

[EXAMPLE: (config)#ip default-gateway 192.168.xx.1]
What command enters the initial configuration dialog mode?
#setup
What allows the user to view the current running configuration in RAM?
#show running-config

(or #sh run)
How does a user disable a range of interfaces?
(config-if-range)#shutdown
What allows the configuration of a message that will be displayed when a user logs in?
(config)#banner login
How does a user generate an RSA key pair?
(config)#crypto key generate rsa
How does a user terminate configuration mode?
(config)#end
How does a user satisfy the cryptographic key generation process requirement of an IP domain name?
(config)#ip domain-name *name.com*
What command specifies the version of secure shell (SSH) to be run?
(config)#ip ssh version 2
How does a user enter configuration mode for line console 0?
(config)#line console 0
How does a user enter virtual terminal configuration mode for lines 0 through 15?
(config)#line vty 0 15
What command activates the login process on the console or virtual terminal lines?
(config-line)#login
What command activates the login process on the console or virtual terminal lines to use the local authentication database?
(config-line)#login local
How does a user exit the EXEC process?
#logout
How is a password assigned to the console or VTY lines?
(config-line)#password *cisco*
How does a user encrypt all passwords in the running configuration?
(config)#service password-encryption
How does a user display the current SSH settings?
#show ip ssh
What command sets a range of interfaces to access mode?
(config-if-range)#switchport mode access
How would a user enable the use of Telnet and SSH on vty lines?
(config-line)#transport input telnet ssh
How does a user create a username and password pair in the local authentication database?
(config)#username netadmin password netadmin