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

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;

28 Cards in this Set

  • Front
  • Back
What does NAT stand for?
Network Address Translation
What does NAT do?
Maps Private IP address to Public IP address.
What are 3 Benfits of NAT?
- connect pools of private IP addresses to 1 external public IP address.
- hides your inernal IP addressing scheme from the outside world.
- Allows for easy renumbering of your IP addresses (If you change ISP)
what are the disadvantages of NAT? (2)
-small amount of delay into network because the NAT router has to create and maintain the NAT table.
- some application fail due to NAT
what are the 3 available forms of NAT?
- Static NAT
- Dynamic NAT
- Port Address Translation (PAT)
How does Static NAT work?
single private IP address is mapped to a single public IP address
How does Dynamic NAT work?
Automoatically connects public addresses to private addresses
what is PAT also known as?
overloading
What does "PAT" mean?
Port Address Translation
How does PAT work?
Allows multiple internal, private IP addresses to use a single external registered address.
what is a socket?
combination of the IP address and Port
what is overlapping?
occurs when the internal netowrk has been incorrectly configured for an IP range that actually exist on the Internet or when two companies merge and each company was using the same private IP address range.
what is the command to conifigure Static NAT?
ip nat inside source static [inside ip] [outside ip]

(define outside & inside interfaces):
ip nat inside
ip nat outside
what command shows static nat mapping?
show ip nat translations
what is the syntax for defining a standard access list?
router(config)#access-list [1-99] permit [inside IP network] [wildcard mask]
what is the syntax to define a NAT pool?
ip nat pool [pool name] [start ip] [end ip] netmask [netmask]
what is the command to link a NAT pool to an Access List?
ip nat inside source list [access list number] pool [pool name]
what is the syntax to finalize a dynamic NAT?
(define the int)
(config)#int f0/0
(config-if)#ip nat inside
(config-if)#int serial 0/1
(config-if)#ip nat outside
What are the 3 steps to configure NAT?
- Configure a standard access list to define what internal traffic will be translated.
- Link the access list to the interface to be used with PAT
- Define interfaces as either insdie or outside
what does "DNS" mean?
Domain Name Service
what does DNS do?
Translates names into IP addresses
What command would you use if you wanted to disable name lookup broadcast on a router (usually because of typos)
no ip domain-lookup
What is the command to enable DNS if it has been disabled?
ip domain-lookup
what is the command to configure DNS lookup?
ip name-server
what does DHCP stand for?
Dynamic Host Configuration Protocol
What does DHCP do?
DHCP manages addressing by leasing the IP information to the hosts
what are the command to configure DHCP on a router?
RouterA(config)#ip dhcp pool Router A
Network 10.0.0.0 255.255.255.0
default-router 10.0.0.1
dmain-name cannon
dns-server 10.0.0.3
netbios-name-server 10.0.0.3
ip dhcp excluded-address 10.0.0.1 10.0.0.3
what is a command to monitor or check DHCP status?
show ip dhcp binding