• 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/113

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;

113 Cards in this Set

  • Front
  • Back

What command must you use to enter global configuration mode?

Configure Terminal

What command must you use to enter privilege mode?

Enable

What mode must you be in to password protect user exec mode?

line con 0

What is the 5th networking layer?

Application

What is the 4th networking layer?

Transport

What is the 3rd networking layer?

Network

What is the 2nd networking layer?

Data Link

What is the 1st networking layer?

Physical

What is the Class A IP range?

1 - 126

What is the Class B IP range?

128 - 191

What is the class C IP range?

192 - 223

What is the Class D IP range?

224 - 239

What is the class E IP range?

240 - 255

What stores the running - config?

RAM

What stores the startup - config?

NVRAM

Where is the IOS file stored?

Flash

What is stored in the ROM?

Bootstrap & ROMMON

What mode does the ">" symbol signify?

User Exec Mode

What command moves ports to a VLAN?

(config-if)#switchport access VLAN #

What command allows you to view your VLANs?

#show VLAN

What command allows you to see detailed information on a specific VLAN?

#show interface VLAN #

What command allows you to enter the config-vlan mode?

(config)#vlan #

What command allows you to change the name of a VLAN?

(config-vlan)#name namehere

What command allows you to set an interface as an access port?

(config-if)#switchport mode access

What command allows you to change an interface to a trunk line?

(config-if)#switchport mode trunk

What does a trunk line allow you to do?

Allows VLANs with the same name to communicate across multiple switches

What command lets you create a VLAN?

(config)#vlan #

Trunking isn't required when going from switch to switch if all PCs are in the default VLAN and belong to the same network. True or false?

True

What is the command for enabling an access port?

switchport mode access

What is the command for turning on switchport security?

switchport port-security

What is the command for setting maximum allowed MAC addresses for port security?

switchport port-security maximum #

What command lets you set allowed MAC addresses statically?

switchport port-security mac-address MACHERE

What command lets you set allowed MAC addresses automatically?

Switchport port-security mac-address sticky

What command allows you to set a port security violation mode?

Switchport port-security violation "protect, restrict, or shutdown"

What command allows you to view your port security across all interfaces?

Show port-security

What command allows you to view port-security for specific interfaces?

Switchport port-security interface fa0/1

How do you renable a port after a violation?

shutdown -> no shutdown

Can a trunk line belong to a VLAN?

No! Never!

What does PPP stand for?

Point-to-Point

What type of cable does a PPP connection use?

Ethernet

What does HDLC stand for?

High Data Link Control

What type of cable is normally used in an HDLC connection?

Serial

What encapsulation information NEVER changes?

Source and Destination IP Addresses

Using HDLC, what type of packet header is used?

HDLC Header

Which connection is better for a large area? PPP or HDLC?

PPP

Within the router CLI, what command do you use to change the IP address of an interface?

(config-if)#ip address IPHERE MASKHERE

What command must be issued so that a router's port is ready for use?

(config-if)#no shutdown

What command is used to check the route of an IP?

#show ip route

What does DTE stand for?

Data Terminal Equipment (Example: Router)

What does DCE stand for?

Data Communication Equipment (Example: Modem or CSU/DSU)

What is the job of the DCE?

To provide clocking (clock rate) for the connection.

What is a WIC?

WAN Interface Card

2,000,000 is the default DCE clock rate. True or false?

True

Which interface is usually bigger? DTE or DCE?

DCE

When setting up IP routing in the router CLI, which prompt must you be at?

Global Configuration

To configure an IP route, what command do you issue?

(config)#ip route DestinationNetworkID DestinationNetworkMask IPofNextHop

What mode must you be in to configure the DCE clock rate?

(config-if) for the correct interface

How do you remove a previously set ip/subnet from an interface?

(config-if)#no ip address

How do you view information about all the controllers?

#show controllers

How do you view information for a specific controller?

#show controllers INTERFACEHERE

How can you execute "show" commands without being in privilege mode?

Typing "do" before the show command will cause them to work properly at any prompt global configuration or higher.

What is administrative distance?

A measure of trustworthiness. The smaller the distance, the more trustworthy it is.

What is the default route?

ip route 0.0.0.0 0.0.0.0 [interfaceout] (goes everywhere)

What is the administrative distance for a directly connected line?

0

What is the administrative distance for a Static connection?

1

What is the administrative distance for a BGP (ext)?

20

What is the administrative distance for a EIGRP (int)?

90

What is the administrative distance for an IGRP?

100

What is the administrative distance for OSPF?

110

What is the administrative distance for IS-IS?

115

What is the administrative distance for RIP?

120

What is the administrative distance for EIGRP (ext)?

170

What is the administrative distance for BGP (int)?

200

What is the administrative distance for an unusable?

255

If a router has more than one route to a single destination, which one will it pick?

The one with the lowest administrative distance. (i.e. static over ospf).

What metric does RIP use?

Hop Count

What metric does OSPF use?

Cost (Bandwidth)

What metric does EIGRP use?

Hop Count vs. Cost (2)

What is a distance vector?

The physical distance between network items. Distance vectors choose the SHORTEST route.

What is a link state?

Quality of the road. Link states choose the FASTEST route.

What is the maximum hop count with RIP?

15

What "mask" must be used when applying OSPF routes?

Wildcard Mask

What 2 commands must you enter to begin setting up RIP?

(config)#router rip


(config)#version [1-2]

When setting up OSPF, what command goes in the final block? -> network [ID] [WILDCARD] [??]

The Area

What is an ACL?

Access Control List - filters that control what traffic is allowed.

By default, ACL's will ____ everything.

Deny

What is the range for standard ACL's?

1-99 & 1300-1999

Where do you implement Standard ACL's?

As close to the destination as possible.

What type of mask do ACL's use?

Wildcard Masks

What is the range for extended ACL's?

100-199 & 2000-2699

Where are extended ACL's implemented?

As close to the SOURCE as possible. Can use multiple filters instead of just 1 like standard.

In what mode do you create ACL's?

Global Configuration

After creating an ACL, what must be done?

You must implement them on the proper interface.

In ACL's, if "permit any" comes before "deny" ______.

Will fail to work properly (be allowed). The list order decides.

What command must you use to create an access control list?

(config)#access-list # [commands here]

What is port 20?

FTP data via TCP

What is port 21?

FTP Control via TCP

What is port 22?

SSH (Secure Shell) via TCP

What is port 23?

Telnet via TCP

What is port 25?

SMTP (simple mail transfer protocol) via TCP

What is port 53?

DNS (domain name services) via UDP (client) and TCP (server)

What are ports 67 & 68?

DHCP (dynamic host control protocol) via UDP

What is port 69?

TFTP (trivial file transfer protocol) via UDP

What are ports 80 and 8080?

HTTP (hyper text transfer protocol) via TCP

What is port 110?

POP3 (email protocol) via TCP

What is port 143?

IMAP (email protocol) via TCP

What is port 161?

SNMP (simple network management protocol) via UDP

What is port 443?

SSL (secure socket layer/HTTPS) via TCP

What is port 3389?

RDP (remote desktop protocol) via UDP

What is IDS?

Intrusion Detection System

What does IDS do?

Detects malicious network traffic and sends an alert to the admin of the network

What is IPS?

Intrusion Prevention System

What does IPS do?

Prevents malicious traffic from infiltrating a network.