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

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;

13 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
When configuring a static NAT use the ________ parameter to create a NAT to translate an internal network address to its corresponding public address.
inside
The inside parameter is used to translate a source address in traffic going from the inside private network to the public network.
When configuring a static NAT use the ________ parameter to create a NAT to translate a public service address to its corresponding internal address.
outside
The outside parameter is used to translate a destination address in traffic going from the outside public network to the private network.
Give the command to create a static NAT to allow the private address of 192.168.1.100 reach the external network using the public address 62.100.100.5.
ip nat inside source static 192.168.1.100 62.100.100.5
Give the command to create a static NAT to allow the Internet users access to the private address of 192.168.1.10 using the public address 62.100.100.10.
ip nat outside source static 62.100.100.10 192.168.1.10
Is source really right here?
What is the command to specify a router's interface as a internal interface.
ip nat inside
This must be done from the interface configuration mode.
What is the command to specify a router's interface as a external interface.
ip nat outside
This must be done from the interface configuration mode.
What is the command to create a pool of addresses?
ip nat pool pool_name start_address end_address netmask subnet_mask
What is the command to create a dynamic NAT for internal addresses going out to the public network?
ip nat inside source list IP_ACL_name_or_# pool pool_name
What is the command to create a dynamic PAT for internal addresses going out to the public network?
ip nat inside source list IP_ACL_name_or_# pool pool_name overload
The command is the same as dynamic NAT except for the overload parameter.
What command should you use to see the address translation table on your router?
show ip nat translations
What command will give statistics for your NAT table?
show ip nat statistics
Specify the command to clear all NAT translations.
clear ip nat translation *
Give the command that will print NAT translations as they occur?
debug ip nat