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

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;

38 Cards in this Set

  • Front
  • Back
What type of cable is used to connect two switches together?
Cross-over cable
What type of cable is used to connect a PC (or other host) to a switch?
Straight-through cable
Range of class A addresses
1 to 126
Range of class B addresses
128 to 191
Range of class C addresses
192 to 223
OSPF multicast IP
224.0.0.5
Banner MOTD
Shown before login prompt
Banner Login
Shown before login prompt, but after MOTD
Banner Exec
Shown after login prompt.
For info to be kept from unauthorized users.
T1 Speed
1.544 Mbps
What are the three private subnets?
10.0.0.0 /8
172.16.0.0 /12
192.168.0.0 /16
ios command to configure ip addresses of name servers
ip name-server svr1 svr2 ...
global config command
How many T1s are in a T3?
28
Which ios command will display recently entered commands?
show history
¿How to encrypt console and vty passwords?
From global config mode, type:
service password-encryption
What is the range of well-known ports?
0-1023
¿What should you do before making changes to an ACL, and why?
Disable the ACL from its interface using the "no ip access-group" command.

If you don't disable an ACL and you clear its contents and start it from scratch, ios will filter all packets except those permitted by your new commands.
¿Where would you want to place a standard ACL, and why?
Close to the destination.

Standard ACLs filter only on source IPs, so tend to filter more than you may want filtered when placed close to the source.
Where would you want to place an extended ACL and why?
Extended ACLs should be placed as close as possible to the source of the packet, so that the packet will be filtered sooner and take up less network bandwidth.

Also, extended ACLs can filter on more specific criteria than standard ACLs.
What happens if an ACL contains no permit statements?
All traffic is filtered because of the implicit deny statement at the end of the ACL.

The interface is effectively shut down.
¿Why would you want to create an ACL in a text editor and not right on the router?
if you make mistakes while typing, you can fix them in the editor

to Avoid deleting and retyping the entire ACL just to delete a single line in a numbered ACL

to be able to add a line to the middle of an existing ACL
What are two important differences between names and numbered ACLs?
Named ACLs are created with a command starting in global config mode, whereas numbered ACLs are started in interface submode.

With named ACLs, the deletion of a line deletes only that line, and not the entire ACL.
¿What is the range of numbers for an extended IP access list?
100-199
or
2000-2699
inclusive.
¿What is the range of numbers for a standard IP access list?
1-99
or
1300-1999
inclusive.
¿What does a binary 0 mean in the wildcard mask of an ACL?
compare the corresponding bit position in the IP address and make sure it is equal to the same bit position in the address from the access-list statement.
¿What does a binary 1 mean in the wildcard mask of an ACL?
"don't care bits"- these bit positions are immediately considered to be a match.
¿What is the bandwidth of a DS0?
64 Kbps
¿How many DS0s are in an E1?
32 DS0s = 32 x 64 Kbps = 2.048 Mbps
¿How many DS0s are in a DS1 (T1)?
24 DS0s = 24 x 64 Kbps = 1.544 Mbps
¿What is an E1?
Similar to a T1, but used in Europe. It uses a rate of 2.048 Mbps and 32-Kbps channels.
¿What are the two most popular protocols on Point to Point links?
HDLC - High-Level Data Link Control

PPP - Point to Point Protocol
What command gives detailed CDP info on all neighbors?
show cdp neighbors detail
What command gives detailed CDP info on one neighbor?
show cdp entry [name]
¿How to configure static host names on a router?
ip host [name] [address]
global config command
¿What's the command to start a named extended ACL?
ip access-list extended nick
¿What's the command to start a numbered ACL?
access-list 101 deny...
Name 3 items in an entry in any routing table
subnet number
outgoing interface
IP address of the next hop router
¿How to configure a default route?
ip route 0.0.0.0 0.0.0.0 [next hop ip]