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

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;

20 Cards in this Set

  • Front
  • Back
What were some TCP/IP developments that helped deal with the limited number of IPv4 addresses available?
Network Address Translation (NAT), along with private addressing, allowed organizations to use unregistered IP addresses internally and still connect to the internet. Classless Interdomain Routing (CIDR) allowed ISPs to reduce waste by assigning a company a small subnet of a network rather than an entire network. CIDR also allows ISPs to summarize routes which helps reduce the size of the routing tables on the internet routers.
What are the private address spaces reserved for internal use at organizations?
A - 10.0.0.0 to 10.255.255.255 B - 172.16.0.0 to 172.31.255.255 C - 192.168.0.0 to 192.168.255.255
Define static NAT
The gateway router has a static one-to-one mapping for private addresses and public addresses. For every internal computer that needs to connect to the internet you need a separate public IP to use.
What terms does Cisco use to refer to NAT addresses?
inside local refers to the private IP address, and inside global refers to the public IP address.
When are outside local and outside global used?
When you are performing NAT translation on packets entering the network, and representing an internet host as being on the local network.
Define dynamic NAT
The gateway router has a pool of public (inside global) IP addresses. As inside hosts connect to outside hosts, the router temporarily maps each inside local IP address to an inside global IP address.
How many concurrent connections can dynamic NAT support?
The number of IP addresses defined in the NAT pool
How can you increase the number of concurrent connections supported by dynamic NAT translation?
Using Port Address Translation (PAT) (also called NAT overload by Cisco) to translate port numbers as well as IP addresses. Because the port number field hsa 16 bits, NAT overload can support up to 65,000 concurrent connections using a single inside global IP address.
How would you enable dymanic NAT with a pool of 200.200.153.1 to 200.200.153.254?
ip nat inside; ip nat pool fred 200.200.153.1 200.200.153.254 mask 255.255.255.0;
How would you clear the NAT translation table?
clear ip nat translation *
How would you enable IP NAT overload, using ACL list 1 to match packets, and using the IP address assigned to the Serial0/0 interface as the inside global IP address?
ip nat inside; ip nat inside source list 1 interface Serial0/0 overload;
What are the different kinds of ICMP messages?
Internet Control Message Protocol messages: Destination unreachbale, time exceeded, redirect, and echo.
What are the different kinds of destination unreachable codes sent by ICMP?
Network unreachable, host unreachable, can't fragment, protocol unreachable, and port unreachable.
When is a network unreachable code used?
By a router, to inform the sender that there is no match in a routing table for the destination address.
When is a host unreachable code used?
By a router, to inform the sender that the packet can be routed to the destination subnet but the host is not responding.
When is a can't fragment code used?
By a router, when the "Don't fragment" bit is set on the packet, to inform the sender that it must fragment the packet to forward it.
When is a protocol unreachable code used?
By the endpoint host, to inform the sender that the packet arrived but there is no transport layer protocol available.
When is a port unreachable code used?
By the endpoint host, to inform the sender that the packet arrived but the destination port has not been opened by an application.
What is the trace command and how does it work?
It does the same thing as traceroute. It sends packets starting with TTL 1 and incrementing by 1 each time. That way it can map the routing path the packets travel.
What is secondary addressing?
Assigning multiple IP addresses to the same interface on a router.