SlideShare a Scribd company logo
CCNA Guide to Cisco Networking Fundamentals  Chapter 9 Network Services
Objectives Understand the purpose and operation of network address translation (NAT) Understand and configure static NAT, dynamic NAT, and PAT Understand and configure Dynamic Host Configuration Protocol (DHCP) Understand and configure Domain Name Services (DNS) Configure network services using Cisco’s Security Device Manager (SDM) CCNA Guide to Cisco Networking Fundamentals
Network Address Translation Network address translation (NAT)   Defined in RFC 3022 Describes methods for connecting private (internal) IP addresses to the Internet NAT uses a one-to-one mapping or one-to-many mapping method To allow one or more private IP clients to gain access to the Internet by mapping the private IP addresses to public IP addresses CCNA Guide to Cisco Networking Fundamentals
Network Address Translation (continued) CCNA Guide to Cisco Networking Fundamentals
Network Address Translation (continued) Advantages Conserves public IP addresses Hides your internal IP addressing scheme from the outside world, greatly enhancing network security Allows for easy renumbering of your IP addresses Disadvantages Introduces a small amount of delay into your network  Because the NAT router has to create and maintain the NAT table End-to-end IP traceability is lost Some applications fail due to NAT CCNA Guide to Cisco Networking Fundamentals
Network Address Translation (continued) NAT is available in three forms: Static NAT Dynamic NAT Port address translation (PAT) CCNA Guide to Cisco Networking Fundamentals
Static NAT Static NAT The simplest form of NAT A single private IP address is mapped to a single public IP address NAT router must maintain a table in memory Table maps internal IP addresses to addresses presented to the Internet CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
Static NAT (continued) The network configuration for NAT is quite simple in a small network The NAT router will be the default gateway for all clients In a larger network, the NAT router might be one of many routers Routers would have to be configured to use the NAT router for Internet communications NAT should be configured on the border router of a large network CCNA Guide to Cisco Networking Fundamentals
Dynamic NAT Dynamic NAT   The NAT router automatically maps a group of valid local IP addresses to a group of Internet IP addresses, as needed The network administrator is not concerned about which IP address the internal clients use Any private IP address will automatically be translated to one of the available Internet IP addresses by the NAT router Addresses for dynamic NAT are pulled out of a predefined pool of public addresses CCNA Guide to Cisco Networking Fundamentals
Port Address Translation Port address translation (PAT) Also known as  overloading Is a special form of dynamic NAT Allows multiple internal, private IP addresses to use a single external registered address To differentiate between the connections, PAT uses multiple public TCP and UDP ports To create unique sockets that map to internal IP addresses CCNA Guide to Cisco Networking Fundamentals
Port Address Translation (continued) CCNA Guide to Cisco Networking Fundamentals
Port Address Translation (continued) The NAT server uses  port forwarding To send connections from external clients to the Web server on the internal network Overlapping Occurs when:  The internal network has been incorrectly configured for an IP range that actually exists on the Internet  or Two companies merge and each company was using the same private IP address range Can be solved using NAT because NAT hides the incorrectly configured internal IP scheme CCNA Guide to Cisco Networking Fundamentals
Configuring Network Address Translation You can configure NAT as static NAT, dynamic NAT, or PAT CCNA Guide to Cisco Networking Fundamentals
Configuring Static NAT Configuring static NAT is a two-step process: Define the static mapping between the inside address and the outside address Define the NAT router’s interfaces as inside or outside The static mapping is defined with the following command: ip nat inside source static [ inside ip] [outside ip] CCNA Guide to Cisco Networking Fundamentals
Configuring Dynamic NAT Steps: Configure a standard access control list to define what internal traffic will be translated Define a pool of addresses to be used for dynamic NAT allocation Link the access list to the NAT pool Define interfaces as either inside or outside To define the standard access list, you must use the following syntax: RouterA(config)#access-list [1-99] permit [inside IP network(s)] [wildcard mask] CCNA Guide to Cisco Networking Fundamentals
Configuring Dynamic NAT (continued) The syntax for defining the NAT pool is: ip nat pool  [ pool name] [start ip] [end ip]  netmask  [netmask] The pool must then be linked to the access list with the following command: ip nat inside source list  [ access list number]  pool  [pool name] Finally, you must define the interfaces as either inside or outside CCNA Guide to Cisco Networking Fundamentals
Configuring Dynamic NAT (continued) Steps for configuring PAT: Configure a standard access list to define what internal traffic will be translated Link the access list to the interface to be used for PAT Define interfaces as either inside or outside CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
Domain Name Service Domain Name Service ( DNS) A popular and important naming service Based on the client/server model, DNS translates names into IP addresses Use the  ip host  command to manually provide name resolution on a Cisco router Lookup By default, a Cisco router will try several times to find an IP address for a name if you enter one CCNA Guide to Cisco Networking Fundamentals
Domain Name Service (continued) CCNA Guide to Cisco Networking Fundamentals
Domain Name Service (continued) Configuring DNS Lookup The command to configure a DNS lookup on a Cisco router is  ip name-server The  ip domain-lookup  command enables DNS if it has previously been disabled CCNA Guide to Cisco Networking Fundamentals
Dynamic Host Configuration Protocol Dynamic Host Configuration Protocol ( DHCP ) Provides IP configuration information to hosts on bootup This functionality is much like that provided by older protocols RARP and BOOTP DHCP manages addressing by leasing the IP information to the hosts This leasing allows the information to be recovered when not in use and reallocated when needed CCNA Guide to Cisco Networking Fundamentals
Dynamic Host Configuration Protocol (continued) CCNA Guide to Cisco Networking Fundamentals
Dynamic Host Configuration Protocol (continued) You can configure your Cisco router to be a DHCP server DHCP relay The router can forward the request to other DHCP servers if it cannot satisfy a DHCP request Configuring the router to be a DHCP server Enable the service using the  service dhcp  command at the global configuration mode prompt Configure DHCP bindings and decide where to store the DHCP bindings database CCNA Guide to Cisco Networking Fundamentals
Dynamic Host Configuration Protocol (continued) Configuring the router to be a DHCP server (continued) Define the pool of addresses Configure any optional IP configuration parameters Exclude any statically configured addresses Monitoring DHCP The best way to check the bindings is to execute the  show ip dhcp binding  command on the router For information on the specific DHCP address pool, use the  show ip dhcp pool  command CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
Dynamic Host Configuration Protocol (continued) CCNA Guide to Cisco Networking Fundamentals
Security Device Manager Cisco’s new Security Device Manager (SDM) Web-based tool for advanced configuration on Cisco routers SDM can be used to configure the NAT, DNS, and DHCP services These services are relatively easy to configure using the command-line interface CCNA Guide to Cisco Networking Fundamentals
Security Device Manager (continued) Using SDM to Configure NAT Using SDM to configure static NAT See Figure 9-9 Using SDM to configure dynamic NAT See Figures 9-10 and 9-11 Using SDM to configure PAT See Figure 9-12 CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
Security Device Manager (continued) Using SDM to configure DNS See Figure 9-13 Using SDM to configure DHCP See Figure 9-14 CCNA Guide to Cisco Networking Fundamentals
Security Device Manager (continued) CCNA Guide to Cisco Networking Fundamentals
CCNA Guide to Cisco Networking Fundamentals
Summary NAT is a technology that allows organizations to map valid external addresses to private or unregistered internal addresses Organizations can use NAT to allow many more people to access the Internet by sharing one or more valid public addresses Static NAT involves mapping each internal IP address to a separately defined outside IP address Dynamic NAT involves the mapping of inside addresses to a smaller pool of outside addresses CCNA Guide to Cisco Networking Fundamentals
Summary (continued) PAT allows an organization to map more than one internal private IP address to a single outside IP address by using port numbers to identify the separate connections The Domain Name Service (DNS) is used to provide an IP address-to-name mapping so that users can refer to hosts by name rather than address CCNA Guide to Cisco Networking Fundamentals
Summary (continued) The Dynamic Host Configuration Protocol provides IP configuration information such as address, subnet mask, default-gateway, DNS and WINS server location, and domain name to hosts on the network SDM is a Web-enabled Cisco product that allows advanced router configuration without using the command-line interface CCNA Guide to Cisco Networking Fundamentals

More Related Content

What's hot (20)

PPTX
CCNA Course Training Presentation
Rohit Singh
 
PDF
Router commands
Akshay Bhardwaj
 
PPT
CCNA Exploration 2 - Chapter 1
Irsandi Hasan
 
PDF
Ccnp workbook network bulls
Swapnil Kapate
 
PPT
Configuring Access & Trunk Ports
NetProtocol Xpert
 
PDF
How BGP Works
ThousandEyes
 
PPT
CCNA PPT
Reetesh Gupta
 
PDF
200 301-ccna
Jasser Kouki
 
PPT
Routing and OSPF
arpit
 
PPT
CCNA Introducing Networks
Dsunte Wilson
 
PDF
Ccna rse dynamic routing
newbie2019
 
PPTX
Chapter 16 : inter-vlan routing
teknetir
 
PPTX
What is Network Address Translation (NAT)
Amit Kumar , Jaipur Engineers
 
PPTX
ccna networking ppt
Er. Anmol Bhagat
 
PDF
Introduction to networks CCNAv7 Module-1
Mukesh Chinta
 
PDF
Ospf.ppt
Edgardo Scrimaglia
 
DOC
Cisco switch commands cheat sheet
3Anetwork com
 
PPT
Modes of router
Er. Anmol Bhagat
 
PPT
Bgp
Febrian ‎
 
CCNA Course Training Presentation
Rohit Singh
 
Router commands
Akshay Bhardwaj
 
CCNA Exploration 2 - Chapter 1
Irsandi Hasan
 
Ccnp workbook network bulls
Swapnil Kapate
 
Configuring Access & Trunk Ports
NetProtocol Xpert
 
How BGP Works
ThousandEyes
 
CCNA PPT
Reetesh Gupta
 
200 301-ccna
Jasser Kouki
 
Routing and OSPF
arpit
 
CCNA Introducing Networks
Dsunte Wilson
 
Ccna rse dynamic routing
newbie2019
 
Chapter 16 : inter-vlan routing
teknetir
 
What is Network Address Translation (NAT)
Amit Kumar , Jaipur Engineers
 
ccna networking ppt
Er. Anmol Bhagat
 
Introduction to networks CCNAv7 Module-1
Mukesh Chinta
 
Cisco switch commands cheat sheet
3Anetwork com
 
Modes of router
Er. Anmol Bhagat
 

Viewers also liked (20)

PPT
CCNA Access Lists
Dsunte Wilson
 
RTF
CCNA Basic Switching and Switch Configuration Questions
Dsunte Wilson
 
PPT
CCNA Routing Protocols
Dsunte Wilson
 
PPT
CCNA Router and IOS Basics
Dsunte Wilson
 
PPT
CCNA Advanced Routing Protocols
Dsunte Wilson
 
PPT
CCNA PPP and Frame Relay
Dsunte Wilson
 
PDF
Introduction to oracle primavera
Dsunte Wilson
 
PPT
CCNA Network Devices
Dsunte Wilson
 
PPT
CCNA Advanced Switching
Dsunte Wilson
 
PPT
CCNA TCP/IP
Dsunte Wilson
 
PPT
CCNA Router Startup and Configuration
Dsunte Wilson
 
PPT
CCNA IP Addressing
Dsunte Wilson
 
PPT
CCNA Basic Switching and Switch Configuration
Dsunte Wilson
 
PPT
Digital Transmission Fundamentals
Aisu
 
PDF
CCNAv5 - S1: Chapter 1 Exploring The Network
Vuz Dở Hơi
 
PDF
CCNAv5 - S2: Chapter1 Introsuction to switched networks
Vuz Dở Hơi
 
PDF
CCNAv5 - S2: Chapter2 Basic Switching Concepts and Configuration
Vuz Dở Hơi
 
PDF
INTRODUCTION TO UML DIAGRAMS
Ashita Agrawal
 
PPTX
Network topologies
Norah Saad
 
PPTX
Network Engineer Interview Questions with Answers
Sarmad Ali
 
CCNA Access Lists
Dsunte Wilson
 
CCNA Basic Switching and Switch Configuration Questions
Dsunte Wilson
 
CCNA Routing Protocols
Dsunte Wilson
 
CCNA Router and IOS Basics
Dsunte Wilson
 
CCNA Advanced Routing Protocols
Dsunte Wilson
 
CCNA PPP and Frame Relay
Dsunte Wilson
 
Introduction to oracle primavera
Dsunte Wilson
 
CCNA Network Devices
Dsunte Wilson
 
CCNA Advanced Switching
Dsunte Wilson
 
CCNA TCP/IP
Dsunte Wilson
 
CCNA Router Startup and Configuration
Dsunte Wilson
 
CCNA IP Addressing
Dsunte Wilson
 
CCNA Basic Switching and Switch Configuration
Dsunte Wilson
 
Digital Transmission Fundamentals
Aisu
 
CCNAv5 - S1: Chapter 1 Exploring The Network
Vuz Dở Hơi
 
CCNAv5 - S2: Chapter1 Introsuction to switched networks
Vuz Dở Hơi
 
CCNAv5 - S2: Chapter2 Basic Switching Concepts and Configuration
Vuz Dở Hơi
 
INTRODUCTION TO UML DIAGRAMS
Ashita Agrawal
 
Network topologies
Norah Saad
 
Network Engineer Interview Questions with Answers
Sarmad Ali
 
Ad

Similar to CCNA Network Services (20)

PPT
CCNP.ppt
karthikvcyber
 
PPTX
CCNA2 Verson6 Chapter9
Chaing Ravuth
 
PPTX
Dhcp and nat
Nisak Ahamed
 
PDF
NAT_Final
Pratik Bhide
 
PPTX
CCNA 2 Routing and Switching v5.0 Chapter 11
Nil Menon
 
PPTX
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
Waqas Ahmed Nawaz
 
PPT
Day 17.1 nat pat (2)
CYBERINTELLIGENTS
 
PPT
Networking 101
webhostingguy
 
PPT
Networking 101
webhostingguy
 
PPT
Networking 101
webhostingguy
 
PPT
Networking 101
webhostingguy
 
PDF
NAT (network address translation) & PAT (port address translation)
Netwax Lab
 
PPTX
Chapter 22 : network address translation for IPv4
teknetir
 
DOCX
How to configure static nat on cisco routers
IT Tech
 
PDF
CCNAv5 - S2: Chapter11 Network Address Translation for ipv4
Vuz Dở Hơi
 
PPTX
Rs instructor ppt_chapter11_final
let's go to study
 
PPTX
Nat
Elshan86
 
PPTX
2. NAT2. NAT2. NAT2. NAT2. NAT2. NAT.pptx
FutureTechnologies3
 
PDF
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
Vuz Dở Hơi
 
PPT
Day 17.1 nat pat
CYBERINTELLIGENTS
 
CCNP.ppt
karthikvcyber
 
CCNA2 Verson6 Chapter9
Chaing Ravuth
 
Dhcp and nat
Nisak Ahamed
 
NAT_Final
Pratik Bhide
 
CCNA 2 Routing and Switching v5.0 Chapter 11
Nil Menon
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
Waqas Ahmed Nawaz
 
Day 17.1 nat pat (2)
CYBERINTELLIGENTS
 
Networking 101
webhostingguy
 
Networking 101
webhostingguy
 
Networking 101
webhostingguy
 
Networking 101
webhostingguy
 
NAT (network address translation) & PAT (port address translation)
Netwax Lab
 
Chapter 22 : network address translation for IPv4
teknetir
 
How to configure static nat on cisco routers
IT Tech
 
CCNAv5 - S2: Chapter11 Network Address Translation for ipv4
Vuz Dở Hơi
 
Rs instructor ppt_chapter11_final
let's go to study
 
2. NAT2. NAT2. NAT2. NAT2. NAT2. NAT.pptx
FutureTechnologies3
 
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
Vuz Dở Hơi
 
Day 17.1 nat pat
CYBERINTELLIGENTS
 
Ad

More from Dsunte Wilson (18)

PPTX
SYMANTEC ENDPOINT PROTECTION Interfacing the SEPM with Protection Center
Dsunte Wilson
 
PPTX
SYMANTEC ENDPOINT PROTECTION Performing Server and Database Management
Dsunte Wilson
 
PPTX
SYMANTEC ENDPOINT PROTECTION Configuring Replication and Failover and Load Ba...
Dsunte Wilson
 
PPTX
SYMANTEC ENDPOINT PROTECTION Advanced Monitoring and Reporting
Dsunte Wilson
 
PPTX
IBM BladeCenter Fundamentals Introduction
Dsunte Wilson
 
PPTX
SYMANTEC ENDPOINT PROTECTION Administration Introduction
Dsunte Wilson
 
PDF
Tips and Tricks of Toad for Oracle 10.6
Dsunte Wilson
 
RTF
CCNA PPP and Frame Relay Questions
Dsunte Wilson
 
RTF
CCNA Access Lists Questions
Dsunte Wilson
 
RTF
CCNA Network Services Questions
Dsunte Wilson
 
PDF
CCNA Advanced Routing Protocols Questions
Dsunte Wilson
 
PDF
CCNA Routing Protocols Questions
Dsunte Wilson
 
PDF
CCNA Router Startup and Configuration Questions
Dsunte Wilson
 
PDF
CCNA Router and IOS Basics Questions
Dsunte Wilson
 
PDF
CCNA IP Addressing
Dsunte Wilson
 
PDF
CCNA TCP/IP Questions
Dsunte Wilson
 
PDF
CCNA Network Devices Questions
Dsunte Wilson
 
PDF
CCNA Introducing Networks Questions
Dsunte Wilson
 
SYMANTEC ENDPOINT PROTECTION Interfacing the SEPM with Protection Center
Dsunte Wilson
 
SYMANTEC ENDPOINT PROTECTION Performing Server and Database Management
Dsunte Wilson
 
SYMANTEC ENDPOINT PROTECTION Configuring Replication and Failover and Load Ba...
Dsunte Wilson
 
SYMANTEC ENDPOINT PROTECTION Advanced Monitoring and Reporting
Dsunte Wilson
 
IBM BladeCenter Fundamentals Introduction
Dsunte Wilson
 
SYMANTEC ENDPOINT PROTECTION Administration Introduction
Dsunte Wilson
 
Tips and Tricks of Toad for Oracle 10.6
Dsunte Wilson
 
CCNA PPP and Frame Relay Questions
Dsunte Wilson
 
CCNA Access Lists Questions
Dsunte Wilson
 
CCNA Network Services Questions
Dsunte Wilson
 
CCNA Advanced Routing Protocols Questions
Dsunte Wilson
 
CCNA Routing Protocols Questions
Dsunte Wilson
 
CCNA Router Startup and Configuration Questions
Dsunte Wilson
 
CCNA Router and IOS Basics Questions
Dsunte Wilson
 
CCNA IP Addressing
Dsunte Wilson
 
CCNA TCP/IP Questions
Dsunte Wilson
 
CCNA Network Devices Questions
Dsunte Wilson
 
CCNA Introducing Networks Questions
Dsunte Wilson
 

Recently uploaded (20)

PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
July Patch Tuesday
Ivanti
 
PDF
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
July Patch Tuesday
Ivanti
 
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
Biography of Daniel Podor.pdf
Daniel Podor
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 

CCNA Network Services

  • 1. CCNA Guide to Cisco Networking Fundamentals Chapter 9 Network Services
  • 2. Objectives Understand the purpose and operation of network address translation (NAT) Understand and configure static NAT, dynamic NAT, and PAT Understand and configure Dynamic Host Configuration Protocol (DHCP) Understand and configure Domain Name Services (DNS) Configure network services using Cisco’s Security Device Manager (SDM) CCNA Guide to Cisco Networking Fundamentals
  • 3. Network Address Translation Network address translation (NAT) Defined in RFC 3022 Describes methods for connecting private (internal) IP addresses to the Internet NAT uses a one-to-one mapping or one-to-many mapping method To allow one or more private IP clients to gain access to the Internet by mapping the private IP addresses to public IP addresses CCNA Guide to Cisco Networking Fundamentals
  • 4. Network Address Translation (continued) CCNA Guide to Cisco Networking Fundamentals
  • 5. Network Address Translation (continued) Advantages Conserves public IP addresses Hides your internal IP addressing scheme from the outside world, greatly enhancing network security Allows for easy renumbering of your IP addresses Disadvantages Introduces a small amount of delay into your network Because the NAT router has to create and maintain the NAT table End-to-end IP traceability is lost Some applications fail due to NAT CCNA Guide to Cisco Networking Fundamentals
  • 6. Network Address Translation (continued) NAT is available in three forms: Static NAT Dynamic NAT Port address translation (PAT) CCNA Guide to Cisco Networking Fundamentals
  • 7. Static NAT Static NAT The simplest form of NAT A single private IP address is mapped to a single public IP address NAT router must maintain a table in memory Table maps internal IP addresses to addresses presented to the Internet CCNA Guide to Cisco Networking Fundamentals
  • 8. CCNA Guide to Cisco Networking Fundamentals
  • 9. Static NAT (continued) The network configuration for NAT is quite simple in a small network The NAT router will be the default gateway for all clients In a larger network, the NAT router might be one of many routers Routers would have to be configured to use the NAT router for Internet communications NAT should be configured on the border router of a large network CCNA Guide to Cisco Networking Fundamentals
  • 10. Dynamic NAT Dynamic NAT The NAT router automatically maps a group of valid local IP addresses to a group of Internet IP addresses, as needed The network administrator is not concerned about which IP address the internal clients use Any private IP address will automatically be translated to one of the available Internet IP addresses by the NAT router Addresses for dynamic NAT are pulled out of a predefined pool of public addresses CCNA Guide to Cisco Networking Fundamentals
  • 11. Port Address Translation Port address translation (PAT) Also known as overloading Is a special form of dynamic NAT Allows multiple internal, private IP addresses to use a single external registered address To differentiate between the connections, PAT uses multiple public TCP and UDP ports To create unique sockets that map to internal IP addresses CCNA Guide to Cisco Networking Fundamentals
  • 12. Port Address Translation (continued) CCNA Guide to Cisco Networking Fundamentals
  • 13. Port Address Translation (continued) The NAT server uses port forwarding To send connections from external clients to the Web server on the internal network Overlapping Occurs when: The internal network has been incorrectly configured for an IP range that actually exists on the Internet or Two companies merge and each company was using the same private IP address range Can be solved using NAT because NAT hides the incorrectly configured internal IP scheme CCNA Guide to Cisco Networking Fundamentals
  • 14. Configuring Network Address Translation You can configure NAT as static NAT, dynamic NAT, or PAT CCNA Guide to Cisco Networking Fundamentals
  • 15. Configuring Static NAT Configuring static NAT is a two-step process: Define the static mapping between the inside address and the outside address Define the NAT router’s interfaces as inside or outside The static mapping is defined with the following command: ip nat inside source static [ inside ip] [outside ip] CCNA Guide to Cisco Networking Fundamentals
  • 16. Configuring Dynamic NAT Steps: Configure a standard access control list to define what internal traffic will be translated Define a pool of addresses to be used for dynamic NAT allocation Link the access list to the NAT pool Define interfaces as either inside or outside To define the standard access list, you must use the following syntax: RouterA(config)#access-list [1-99] permit [inside IP network(s)] [wildcard mask] CCNA Guide to Cisco Networking Fundamentals
  • 17. Configuring Dynamic NAT (continued) The syntax for defining the NAT pool is: ip nat pool [ pool name] [start ip] [end ip] netmask [netmask] The pool must then be linked to the access list with the following command: ip nat inside source list [ access list number] pool [pool name] Finally, you must define the interfaces as either inside or outside CCNA Guide to Cisco Networking Fundamentals
  • 18. Configuring Dynamic NAT (continued) Steps for configuring PAT: Configure a standard access list to define what internal traffic will be translated Link the access list to the interface to be used for PAT Define interfaces as either inside or outside CCNA Guide to Cisco Networking Fundamentals
  • 19. CCNA Guide to Cisco Networking Fundamentals
  • 20. Domain Name Service Domain Name Service ( DNS) A popular and important naming service Based on the client/server model, DNS translates names into IP addresses Use the ip host command to manually provide name resolution on a Cisco router Lookup By default, a Cisco router will try several times to find an IP address for a name if you enter one CCNA Guide to Cisco Networking Fundamentals
  • 21. Domain Name Service (continued) CCNA Guide to Cisco Networking Fundamentals
  • 22. Domain Name Service (continued) Configuring DNS Lookup The command to configure a DNS lookup on a Cisco router is ip name-server The ip domain-lookup command enables DNS if it has previously been disabled CCNA Guide to Cisco Networking Fundamentals
  • 23. Dynamic Host Configuration Protocol Dynamic Host Configuration Protocol ( DHCP ) Provides IP configuration information to hosts on bootup This functionality is much like that provided by older protocols RARP and BOOTP DHCP manages addressing by leasing the IP information to the hosts This leasing allows the information to be recovered when not in use and reallocated when needed CCNA Guide to Cisco Networking Fundamentals
  • 24. Dynamic Host Configuration Protocol (continued) CCNA Guide to Cisco Networking Fundamentals
  • 25. Dynamic Host Configuration Protocol (continued) You can configure your Cisco router to be a DHCP server DHCP relay The router can forward the request to other DHCP servers if it cannot satisfy a DHCP request Configuring the router to be a DHCP server Enable the service using the service dhcp command at the global configuration mode prompt Configure DHCP bindings and decide where to store the DHCP bindings database CCNA Guide to Cisco Networking Fundamentals
  • 26. Dynamic Host Configuration Protocol (continued) Configuring the router to be a DHCP server (continued) Define the pool of addresses Configure any optional IP configuration parameters Exclude any statically configured addresses Monitoring DHCP The best way to check the bindings is to execute the show ip dhcp binding command on the router For information on the specific DHCP address pool, use the show ip dhcp pool command CCNA Guide to Cisco Networking Fundamentals
  • 27. CCNA Guide to Cisco Networking Fundamentals
  • 28. Dynamic Host Configuration Protocol (continued) CCNA Guide to Cisco Networking Fundamentals
  • 29. Security Device Manager Cisco’s new Security Device Manager (SDM) Web-based tool for advanced configuration on Cisco routers SDM can be used to configure the NAT, DNS, and DHCP services These services are relatively easy to configure using the command-line interface CCNA Guide to Cisco Networking Fundamentals
  • 30. Security Device Manager (continued) Using SDM to Configure NAT Using SDM to configure static NAT See Figure 9-9 Using SDM to configure dynamic NAT See Figures 9-10 and 9-11 Using SDM to configure PAT See Figure 9-12 CCNA Guide to Cisco Networking Fundamentals
  • 31. CCNA Guide to Cisco Networking Fundamentals
  • 32. CCNA Guide to Cisco Networking Fundamentals
  • 33. CCNA Guide to Cisco Networking Fundamentals
  • 34. CCNA Guide to Cisco Networking Fundamentals
  • 35. Security Device Manager (continued) Using SDM to configure DNS See Figure 9-13 Using SDM to configure DHCP See Figure 9-14 CCNA Guide to Cisco Networking Fundamentals
  • 36. Security Device Manager (continued) CCNA Guide to Cisco Networking Fundamentals
  • 37. CCNA Guide to Cisco Networking Fundamentals
  • 38. Summary NAT is a technology that allows organizations to map valid external addresses to private or unregistered internal addresses Organizations can use NAT to allow many more people to access the Internet by sharing one or more valid public addresses Static NAT involves mapping each internal IP address to a separately defined outside IP address Dynamic NAT involves the mapping of inside addresses to a smaller pool of outside addresses CCNA Guide to Cisco Networking Fundamentals
  • 39. Summary (continued) PAT allows an organization to map more than one internal private IP address to a single outside IP address by using port numbers to identify the separate connections The Domain Name Service (DNS) is used to provide an IP address-to-name mapping so that users can refer to hosts by name rather than address CCNA Guide to Cisco Networking Fundamentals
  • 40. Summary (continued) The Dynamic Host Configuration Protocol provides IP configuration information such as address, subnet mask, default-gateway, DNS and WINS server location, and domain name to hosts on the network SDM is a Web-enabled Cisco product that allows advanced router configuration without using the command-line interface CCNA Guide to Cisco Networking Fundamentals