SlideShare a Scribd company logo
1 of 35
Top-Down Network
Design
Chapter Six
Designing Models for Addressing and Naming
Copyright 2010 Cisco Press & Priscilla Oppenheimer
Guidelines for Addressing and
Naming
 Use a structured model for addressing and naming
 Assign addresses and names hierarchically
 Decide in advance if you will use
 Central or distributed authority for addressing and naming
 Public or private addressing
 Static or dynamic addressing and naming
2
Advantages of Structured
Models for Addressing &
Naming It makes it easier to
 Read network maps
 Operate network management software
 Recognize devices in protocol analyzer traces
 Meet goals for usability
 Design filters on firewalls and routers
 Implement route summarization
3
Public IP Addresses
 Managed by the Internet Assigned Numbers Authority (IANA)
 Users are assigned IP addresses by Internet service providers
(ISPs).
 ISPs obtain allocations of IP addresses from their appropriate
Regional Internet Registry (RIR)
4
Regional Internet Registries
(RIR)
 American Registry for Internet Numbers (ARIN)
serves North America and parts of the Caribbean.
 RIPE Network Coordination Centre (RIPE NCC)
serves Europe, the Middle East, and Central Asia.
 Asia-Pacific Network Information Centre (APNIC)
serves Asia and the Pacific region.
 Latin American and Caribbean Internet Addresses Registry (LACNI
serves Latin America and parts of the Caribbean.
 African Network Information Centre (AfriNIC) serves
Africa.
5
Private Addressing
10.0.0.0 – 10.255.255.255
172.16.0.0 – 172.31.255.255
192.168.0.0 – 192.168.255.255
6
Criteria for Using Static Vs. Dynamic
Addressing
 The number of end systems
 The likelihood of needing to renumber
 The need for high availability
 Security requirements
 The importance of tracking addresses
 Whether end systems need additional information
 (DHCP can provide more than just an address)
7
The Two Parts of an IP Address
Prefix Host
32 Bits
Prefix Length
8
Prefix Length
 An IP address is accompanied by an indication of the prefix length
 Subnet mask
 /Length
 Examples
 192.168.10.1 255.255.255.0
 192.168.10.1/24
9
Subnet Mask
 32 bits long
 Specifies which part of an IP address is the
network/subnet field and which part is the host
field
 The network/subnet portion of the mask is all 1s in binary.
 The host portion of the mask is all 0s in binary.
 Convert the binary expression back to dotted-decimal
notation for entering into configurations.
 Alternative
 Use slash notation (for example /24)
 Specifies the number of 1s
10
Subnet Mask Example
 11111111 11111111 11111111 00000000
 What is this in slash notation?
 What is this in dotted-decimal notation?
11
Another Subnet Mask Example
 11111111 11111111 11110000 00000000
 What is this in slash notation?
 What is this in dotted-decimal notation?
12
One More Subnet Mask Example
 11111111 11111111 11111000 00000000
 What is this in slash notation?
 What is this in dotted-decimal notation?
13
Designing Networks with
Subnets
 Determining subnet size
 Computing subnet mask
 Computing IP addresses
14
Addresses to Avoid When
Subnetting
 A node address of all ones (broadcast)
 A node address of all zeros (network)
 A subnet address of all ones (all subnets)
 A subnet address of all zeros (confusing)
 Cisco IOS configuration permits a subnet address of all
zeros with the ip subnet-zero command
15
Practice
 Network is 172.16.0.0
 You want to divide the network into subnets.
 You will allow 600 nodes per subnet.
 What subnet mask should you use?
 What is the address of the first node on the first subnet?
 What address would this node use to send to all devices on its
subnet?
16
More Practice
 Network is 172.16.0.0
 You have eight LANs, each of which will be its own subnet.
 What subnet mask should you use?
 What is the address of the first node on the first subnet?
 What address would this node use to send to all devices
on its subnet?
17
One More
 Network is 192.168.55.0
 You want to divide the network into subnets.
 You will have approximately 25 nodes per subnet.
 What subnet mask should you use?
 What is the address of the last node on the last subnet?
 What address would this node use to send to all devices on its
subnet?
18
IP Address Classes
 Classes are now considered obsolete
 But you have to learn them because
 Everyone in the industry still talks about them!
 You may run into a device whose configuration is affected by the
classful system
19
Classful IP Addressing
Class First First Byte Prefix Intent
Few Bits Length
A 0 1-126* 8 Very large networks
B 10 128-191 16 Large networks
C 110 192-223 24 Small networks
D 1110 224-239 NA IP multicast
E 1111 240-255 NA Experimental
*Addresses starting with 127 are reserved for IP traffic local to a host.
20
Class Prefix Number of Addresses
Length per Network
A 8 224
-2 = 16,777,214
B 16 216
-2 = 65,534
C 24 28
-2 = 254
Division of the Classful Address
Space
21
Classful IP is Wasteful
 Class A uses 50% of address space
 Class B uses 25% of address space
 Class C uses 12.5% of address space
 Class D and E use 12.5% of address space
22
Classless Addressing
 Prefix/host boundary can be anywhere
 Less wasteful
 Supports route summarization
 Also known as
 Aggregation
 Supernetting
 Classless routing
 Classless inter-domain routing (CIDR)
 Prefix routing
23
Supernetting
 Move prefix boundary to the left
 Branch office advertises 172.16.0.0/14
172.16.0.0
172.17.0.0
172.18.0.0
172.19.0.0
Branch-Office Networks
Enterprise Core
Network
Branch-Office Router
24
172.16.0.0/14 Summarization
Second Octet in Decimal Second Octet in Binary
16 00010000
17 00010001
18 00010010
19 00010011
25
Discontiguous Subnets
Area 1
Subnets 10.108.16.0 -
10.108.31.0
Area 0
Network
192.168.49.0
Area 2
Subnets 10.108.32.0 -
10.108.47.0
Router A Router B
26
A Mobile Host
Subnets 10.108.16.0 -
10.108.31.0
Router A Router B
Host 10.108.16.1
27
IPv6 Aggregatable Global Unicast
Address Format
 FP Format Prefix (001)
 TLA ID Top-Level Aggregation Identifier
 RES Reserved for future use
 NLA ID Next-Level Aggregation Identifier
 SLA ID Site-Level Aggregation Identifier
 Interface ID Interface Identifier
3 13 8 24 16 64 bits
FP TLA
ID
RES NLA
ID
SLA
ID
Interface ID
Public topology
Site
Topology
28
Upgrading to IPv6
 Dual stack
 Tunneling
 Translation
29
Guidelines for Assigning Names
 Names should be
 Short
 Meaningful
 Unambiguous
 Distinct
 Case insensitive
 Avoid names with unusual characters
 Hyphens, underscores, asterisks, and so on
30
Domain Name System
(DNS)
 Maps names to IP addresses
 Supports hierarchical naming
 example: frodo.rivendell.middle-earth.com
 A DNS server has a database of resource records (RRs) that
maps names to addresses in the server’s “zone of authority”
 Client queries server
 Uses UDP port 53 for name queries and replies
 Uses TCP port 53 for zone transfers
31
DNS Details
Client/server model
Client is configured with the IP
address of a DNS server
Manually or DHCP can provide the
address
DNS resolver software on the client
machine sends a query to the DNS
server. Client may ask for recursive
lookup.
32
DNS Recursion
 A DNS server may offer recursion, which allows
the server to ask other servers
 Each server is configured with the IP address of one
or more root DNS servers.
 When a DNS server receives a response from
another server, it replies to the resolver client
software. The server also caches the
information for future requests.
 The network administrator of the authoritative DNS
server for a name defines the length of time that a
non-authoritative server may cache information.
33
Summary
 Use a systematic, structured, top-down approach to
addressing and naming
 Assign addresses in a hierarchical fashion
 Distribute authority for addressing and naming where
appropriate
 IPv6 looms in our future
34
Review Questions
 Why is it important to use a structured model for addressing
and naming?
 When is it appropriate to use IP private addressing versus
public addressing?
 When is it appropriate to use static versus dynamic
addressing?
 What are some approaches to upgrading to IPv6?
35

More Related Content

What's hot

08. networking-part-2
08. networking-part-208. networking-part-2
08. networking-part-2Muhammad Ahad
 
01. 03.-introduction-to-infrastructure
01. 03.-introduction-to-infrastructure01. 03.-introduction-to-infrastructure
01. 03.-introduction-to-infrastructureMuhammad Ahad
 
11. operating-systems-part-1
11. operating-systems-part-111. operating-systems-part-1
11. operating-systems-part-1Muhammad Ahad
 
05. performance-concepts-26-slides
05. performance-concepts-26-slides05. performance-concepts-26-slides
05. performance-concepts-26-slidesMuhammad Ahad
 
Firewall, Router and Switch Configuration Review
Firewall, Router and Switch Configuration ReviewFirewall, Router and Switch Configuration Review
Firewall, Router and Switch Configuration ReviewChristine MacDonald
 
enterprise network design architecture
enterprise network design architectureenterprise network design architecture
enterprise network design architectureAmir Hossain
 
Network administration and Management
Network administration and ManagementNetwork administration and Management
Network administration and ManagementBry Cunal
 
IP addressing and Subnetting PPT
IP addressing and Subnetting PPTIP addressing and Subnetting PPT
IP addressing and Subnetting PPTPijush Kanti Das
 
Ports and protocols
Ports and protocolsPorts and protocols
Ports and protocolssiva rama
 
Network Design and Management
Network Design and ManagementNetwork Design and Management
Network Design and Managementtlerell
 

What's hot (20)

Chapter09
Chapter09Chapter09
Chapter09
 
08. networking-part-2
08. networking-part-208. networking-part-2
08. networking-part-2
 
01. 03.-introduction-to-infrastructure
01. 03.-introduction-to-infrastructure01. 03.-introduction-to-infrastructure
01. 03.-introduction-to-infrastructure
 
11. operating-systems-part-1
11. operating-systems-part-111. operating-systems-part-1
11. operating-systems-part-1
 
Chapter13
Chapter13Chapter13
Chapter13
 
05. performance-concepts-26-slides
05. performance-concepts-26-slides05. performance-concepts-26-slides
05. performance-concepts-26-slides
 
IP classes
IP classesIP classes
IP classes
 
Chapter03
Chapter03Chapter03
Chapter03
 
10. compute-part-2
10. compute-part-210. compute-part-2
10. compute-part-2
 
Firewall, Router and Switch Configuration Review
Firewall, Router and Switch Configuration ReviewFirewall, Router and Switch Configuration Review
Firewall, Router and Switch Configuration Review
 
Chapter11
Chapter11Chapter11
Chapter11
 
enterprise network design architecture
enterprise network design architectureenterprise network design architecture
enterprise network design architecture
 
07. datacenters
07. datacenters07. datacenters
07. datacenters
 
Network administration and Management
Network administration and ManagementNetwork administration and Management
Network administration and Management
 
09. storage-part-1
09. storage-part-109. storage-part-1
09. storage-part-1
 
IP addressing and Subnetting PPT
IP addressing and Subnetting PPTIP addressing and Subnetting PPT
IP addressing and Subnetting PPT
 
Network Protocol and TCP/IP
Network Protocol and TCP/IPNetwork Protocol and TCP/IP
Network Protocol and TCP/IP
 
Ports and protocols
Ports and protocolsPorts and protocols
Ports and protocols
 
Network Design and Management
Network Design and ManagementNetwork Design and Management
Network Design and Management
 
DHCP
DHCPDHCP
DHCP
 

Viewers also liked

06. security concept
06. security concept06. security concept
06. security conceptMuhammad Ahad
 
03. non-functional-attributes-introduction-4-slides
03. non-functional-attributes-introduction-4-slides03. non-functional-attributes-introduction-4-slides
03. non-functional-attributes-introduction-4-slidesMuhammad Ahad
 
11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2Muhammad Ahad
 
05. performance-concepts
05. performance-concepts05. performance-concepts
05. performance-conceptsMuhammad Ahad
 
04. availability-concepts
04. availability-concepts04. availability-concepts
04. availability-conceptsMuhammad Ahad
 
01. 02. introduction (13 slides)
01.   02. introduction (13 slides)01.   02. introduction (13 slides)
01. 02. introduction (13 slides)Muhammad Ahad
 
Artificial Intelligence
Artificial Intelligence Artificial Intelligence
Artificial Intelligence Muhammad Ahad
 

Viewers also liked (9)

10. compute-part-1
10. compute-part-110. compute-part-1
10. compute-part-1
 
06. security concept
06. security concept06. security concept
06. security concept
 
03. non-functional-attributes-introduction-4-slides
03. non-functional-attributes-introduction-4-slides03. non-functional-attributes-introduction-4-slides
03. non-functional-attributes-introduction-4-slides
 
11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2
 
05. performance-concepts
05. performance-concepts05. performance-concepts
05. performance-concepts
 
04. availability-concepts
04. availability-concepts04. availability-concepts
04. availability-concepts
 
Chapter04
Chapter04Chapter04
Chapter04
 
01. 02. introduction (13 slides)
01.   02. introduction (13 slides)01.   02. introduction (13 slides)
01. 02. introduction (13 slides)
 
Artificial Intelligence
Artificial Intelligence Artificial Intelligence
Artificial Intelligence
 

Similar to Chapter06

Similar to Chapter06 (20)

Free CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfFree CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdf
 
IP Addressing
IP AddressingIP Addressing
IP Addressing
 
ip addressing & subnet.pptx
ip addressing & subnet.pptxip addressing & subnet.pptx
ip addressing & subnet.pptx
 
5 configuring TCP/IP
5 configuring TCP/IP5 configuring TCP/IP
5 configuring TCP/IP
 
CCNA ppt Day 3
CCNA ppt Day 3CCNA ppt Day 3
CCNA ppt Day 3
 
16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)
 
2 logical addressing
2 logical addressing2 logical addressing
2 logical addressing
 
Chapter6
Chapter6Chapter6
Chapter6
 
IP Addressing and Subnetting
IP Addressing and SubnettingIP Addressing and Subnetting
IP Addressing and Subnetting
 
Ramakant tyagi presentation on ip addressing
Ramakant tyagi presentation on ip addressingRamakant tyagi presentation on ip addressing
Ramakant tyagi presentation on ip addressing
 
Subnet Design
Subnet DesignSubnet Design
Subnet Design
 
Network.pptx
Network.pptxNetwork.pptx
Network.pptx
 
IPv4 Addressing
 IPv4 Addressing   IPv4 Addressing
IPv4 Addressing
 
Ip Addressing Basics
Ip Addressing BasicsIp Addressing Basics
Ip Addressing Basics
 
Networking
NetworkingNetworking
Networking
 
CCNA Icnd110 s04l03
CCNA Icnd110 s04l03CCNA Icnd110 s04l03
CCNA Icnd110 s04l03
 
Microsoft windows server 2003
Microsoft windows server 2003Microsoft windows server 2003
Microsoft windows server 2003
 
ffuyu yguyguyg.pptx
ffuyu yguyguyg.pptxffuyu yguyguyg.pptx
ffuyu yguyguyg.pptx
 
Vlsm
VlsmVlsm
Vlsm
 
net work iTM3
net work iTM3net work iTM3
net work iTM3
 

Recently uploaded

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 

Recently uploaded (20)

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 

Chapter06

  • 1. Top-Down Network Design Chapter Six Designing Models for Addressing and Naming Copyright 2010 Cisco Press & Priscilla Oppenheimer
  • 2. Guidelines for Addressing and Naming  Use a structured model for addressing and naming  Assign addresses and names hierarchically  Decide in advance if you will use  Central or distributed authority for addressing and naming  Public or private addressing  Static or dynamic addressing and naming 2
  • 3. Advantages of Structured Models for Addressing & Naming It makes it easier to  Read network maps  Operate network management software  Recognize devices in protocol analyzer traces  Meet goals for usability  Design filters on firewalls and routers  Implement route summarization 3
  • 4. Public IP Addresses  Managed by the Internet Assigned Numbers Authority (IANA)  Users are assigned IP addresses by Internet service providers (ISPs).  ISPs obtain allocations of IP addresses from their appropriate Regional Internet Registry (RIR) 4
  • 5. Regional Internet Registries (RIR)  American Registry for Internet Numbers (ARIN) serves North America and parts of the Caribbean.  RIPE Network Coordination Centre (RIPE NCC) serves Europe, the Middle East, and Central Asia.  Asia-Pacific Network Information Centre (APNIC) serves Asia and the Pacific region.  Latin American and Caribbean Internet Addresses Registry (LACNI serves Latin America and parts of the Caribbean.  African Network Information Centre (AfriNIC) serves Africa. 5
  • 6. Private Addressing 10.0.0.0 – 10.255.255.255 172.16.0.0 – 172.31.255.255 192.168.0.0 – 192.168.255.255 6
  • 7. Criteria for Using Static Vs. Dynamic Addressing  The number of end systems  The likelihood of needing to renumber  The need for high availability  Security requirements  The importance of tracking addresses  Whether end systems need additional information  (DHCP can provide more than just an address) 7
  • 8. The Two Parts of an IP Address Prefix Host 32 Bits Prefix Length 8
  • 9. Prefix Length  An IP address is accompanied by an indication of the prefix length  Subnet mask  /Length  Examples  192.168.10.1 255.255.255.0  192.168.10.1/24 9
  • 10. Subnet Mask  32 bits long  Specifies which part of an IP address is the network/subnet field and which part is the host field  The network/subnet portion of the mask is all 1s in binary.  The host portion of the mask is all 0s in binary.  Convert the binary expression back to dotted-decimal notation for entering into configurations.  Alternative  Use slash notation (for example /24)  Specifies the number of 1s 10
  • 11. Subnet Mask Example  11111111 11111111 11111111 00000000  What is this in slash notation?  What is this in dotted-decimal notation? 11
  • 12. Another Subnet Mask Example  11111111 11111111 11110000 00000000  What is this in slash notation?  What is this in dotted-decimal notation? 12
  • 13. One More Subnet Mask Example  11111111 11111111 11111000 00000000  What is this in slash notation?  What is this in dotted-decimal notation? 13
  • 14. Designing Networks with Subnets  Determining subnet size  Computing subnet mask  Computing IP addresses 14
  • 15. Addresses to Avoid When Subnetting  A node address of all ones (broadcast)  A node address of all zeros (network)  A subnet address of all ones (all subnets)  A subnet address of all zeros (confusing)  Cisco IOS configuration permits a subnet address of all zeros with the ip subnet-zero command 15
  • 16. Practice  Network is 172.16.0.0  You want to divide the network into subnets.  You will allow 600 nodes per subnet.  What subnet mask should you use?  What is the address of the first node on the first subnet?  What address would this node use to send to all devices on its subnet? 16
  • 17. More Practice  Network is 172.16.0.0  You have eight LANs, each of which will be its own subnet.  What subnet mask should you use?  What is the address of the first node on the first subnet?  What address would this node use to send to all devices on its subnet? 17
  • 18. One More  Network is 192.168.55.0  You want to divide the network into subnets.  You will have approximately 25 nodes per subnet.  What subnet mask should you use?  What is the address of the last node on the last subnet?  What address would this node use to send to all devices on its subnet? 18
  • 19. IP Address Classes  Classes are now considered obsolete  But you have to learn them because  Everyone in the industry still talks about them!  You may run into a device whose configuration is affected by the classful system 19
  • 20. Classful IP Addressing Class First First Byte Prefix Intent Few Bits Length A 0 1-126* 8 Very large networks B 10 128-191 16 Large networks C 110 192-223 24 Small networks D 1110 224-239 NA IP multicast E 1111 240-255 NA Experimental *Addresses starting with 127 are reserved for IP traffic local to a host. 20
  • 21. Class Prefix Number of Addresses Length per Network A 8 224 -2 = 16,777,214 B 16 216 -2 = 65,534 C 24 28 -2 = 254 Division of the Classful Address Space 21
  • 22. Classful IP is Wasteful  Class A uses 50% of address space  Class B uses 25% of address space  Class C uses 12.5% of address space  Class D and E use 12.5% of address space 22
  • 23. Classless Addressing  Prefix/host boundary can be anywhere  Less wasteful  Supports route summarization  Also known as  Aggregation  Supernetting  Classless routing  Classless inter-domain routing (CIDR)  Prefix routing 23
  • 24. Supernetting  Move prefix boundary to the left  Branch office advertises 172.16.0.0/14 172.16.0.0 172.17.0.0 172.18.0.0 172.19.0.0 Branch-Office Networks Enterprise Core Network Branch-Office Router 24
  • 25. 172.16.0.0/14 Summarization Second Octet in Decimal Second Octet in Binary 16 00010000 17 00010001 18 00010010 19 00010011 25
  • 26. Discontiguous Subnets Area 1 Subnets 10.108.16.0 - 10.108.31.0 Area 0 Network 192.168.49.0 Area 2 Subnets 10.108.32.0 - 10.108.47.0 Router A Router B 26
  • 27. A Mobile Host Subnets 10.108.16.0 - 10.108.31.0 Router A Router B Host 10.108.16.1 27
  • 28. IPv6 Aggregatable Global Unicast Address Format  FP Format Prefix (001)  TLA ID Top-Level Aggregation Identifier  RES Reserved for future use  NLA ID Next-Level Aggregation Identifier  SLA ID Site-Level Aggregation Identifier  Interface ID Interface Identifier 3 13 8 24 16 64 bits FP TLA ID RES NLA ID SLA ID Interface ID Public topology Site Topology 28
  • 29. Upgrading to IPv6  Dual stack  Tunneling  Translation 29
  • 30. Guidelines for Assigning Names  Names should be  Short  Meaningful  Unambiguous  Distinct  Case insensitive  Avoid names with unusual characters  Hyphens, underscores, asterisks, and so on 30
  • 31. Domain Name System (DNS)  Maps names to IP addresses  Supports hierarchical naming  example: frodo.rivendell.middle-earth.com  A DNS server has a database of resource records (RRs) that maps names to addresses in the server’s “zone of authority”  Client queries server  Uses UDP port 53 for name queries and replies  Uses TCP port 53 for zone transfers 31
  • 32. DNS Details Client/server model Client is configured with the IP address of a DNS server Manually or DHCP can provide the address DNS resolver software on the client machine sends a query to the DNS server. Client may ask for recursive lookup. 32
  • 33. DNS Recursion  A DNS server may offer recursion, which allows the server to ask other servers  Each server is configured with the IP address of one or more root DNS servers.  When a DNS server receives a response from another server, it replies to the resolver client software. The server also caches the information for future requests.  The network administrator of the authoritative DNS server for a name defines the length of time that a non-authoritative server may cache information. 33
  • 34. Summary  Use a systematic, structured, top-down approach to addressing and naming  Assign addresses in a hierarchical fashion  Distribute authority for addressing and naming where appropriate  IPv6 looms in our future 34
  • 35. Review Questions  Why is it important to use a structured model for addressing and naming?  When is it appropriate to use IP private addressing versus public addressing?  When is it appropriate to use static versus dynamic addressing?  What are some approaches to upgrading to IPv6? 35

Editor's Notes

  1. Dual stack. Both IPv4 and IPv6 stacks run on the system. The system is able to communicate with both IPv6 and IPv4 devices. The choice of IP version is based on name lookup and application preference. This is the most appropriate for campus and access-layer networks during the transition period and is the preferred technique for transition to IPv6. Operating systems that support a dual stack include FreeBSD, Linux, Sun Solaris, and Windows 2000/XP. Tunneling. This method encapsulates IPv6 packets for traversal across an IPv4 network. By using tunnels, isolated IPv6 networks can communicate without requiring an upgrade to the IPv4 infrastructure. Both routers and hosts can use tunneling. Translation. This method translates one type of address to the other to facilitate communication between an IPv4 and an IPv6 network. Translation will mainly be used for legacy equipment that will not be upgraded to IPv6. An IPv6 node behind a translation device has full connectivity to other IPv6 nodes and has NAT functionality for communicating with IPv4 devices. Translation can be handled by Application Level Gateways (ALGs) or by an application programming interface (API) on every host. The two main translation solutions are NAT-Protocol Translation (NAT-PT) and Dual-Stack Transition Mechanism (DSTM).