11 - Basic Network Services Flashcards
What are the three methods of NAT?
One-to-One mapping or static nat
Many-to-Many mapping or dynamic nat
Many-to-One mapping o PAT
What is a local address as it pertains to NAT?
source or destination ip address as seen from the perspective of a host on the inside network
What is a global address as it pertains to NAT?
source or destination ip address as seen from the perspective of a host on the outside network
What is an inside local address?
ip address that represents an internal host to the inside network
What is an inside global address?
ip address that represents an internal host to the outside network
What is an outside global address?
ip address that represents an external host to the outside network
What is an outside local address?
ip address that represents an external host to the inside network
What is another name for NAT many-to-one mapping?
nat overloading
Do dynamic NAT mappings expire after a period of inactivity?
Yes
How does port address translation NAT work?
layer four port number to identify each address mapping
What command is used to configure NAT on the interface level?
ip nat inside
ip nat outside
What is the command to configure static NAT?
ip nat inside source static 192.168.1.11 2.2.2.2
What command is used to verify your NAT translations?
sh ip nat translations
what is the command to configure dynamic NAT?
ip nat pool NATPOOL 2.2.2.2 2.2.2.14
access-list 1 permit 192.168.1.0 0.0.0.255
ip nat inside source list 1 pool NATPOOL
What is the command to configure PAT?
access-list 1 permit 192.168.1.0 0.0.0.255
ip nat inside source list 1 interface fa0/0 overload
What port does DNS clients use for dns queries?
UDP 53 mainly
Does DNS use tcp?
Yes, when the query is larger than 512 bytes
What command is used on a router to translate dns hostnames into ip addresses?
ip domain lookup
you can use no ip domain lookup to prevent the cisco device from trying to translate a hostname on a mistyped word
What command is used on a router to configure your dns servers on a dns client device?
ip name-server 10.249.83.51
What is the command to enable a dns server on a cisco device?
ip dns server