This document discusses IP addressing and subnetting. It defines IP addresses and the different address classes. IPV4 addresses consist of 32 bits divided into four octets. Subnetting breaks large networks into smaller subnets for easier management. The document explains how to calculate subnets and addresses using binary math and CIDR notation. It identifies key aspects of subnetting like network IDs, block sizes, broadcast addresses, and host addresses.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
100 views16 pages
Determine Best Fit Topology-LO-3 Final
This document discusses IP addressing and subnetting. It defines IP addresses and the different address classes. IPV4 addresses consist of 32 bits divided into four octets. Subnetting breaks large networks into smaller subnets for easier management. The document explains how to calculate subnets and addresses using binary math and CIDR notation. It identifies key aspects of subnetting like network IDs, block sizes, broadcast addresses, and host addresses.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 16
ZION BUSINESS AND TECHNOLOGY COLLEGE
IT DEPARTMENT HARDWARE AND NETWORK SERVICING Level III
INFORMATION SHEET # 3 Unit of Competence: Determine Best Fit Topology • LO 3: IP address and Subnneting
Prepared by Milkias.M, Zelalem.B, Dawit and Sisay 1
What is an IP address An IP address consists of two parts a network address that identifies the network and a host address that identifies the particular host, or node. Types of IP address Internet protocol version 4/IPV4 Internet protocol Version 6/IPV6 Every computer on a network must have a unique address. If two computers have the same address an address conflict occurs. IPV4 The IP address identifies and differentiates a given machine from all others on the network. It consists of a 32-bit binary number that is usually displayed as four octets expressed in decimal and separated by periods. You must have a unique IP address for each machine on the network. In addition, if your machine serves as a router to another network (it contains two or more network adapters and belongs to two or more networks), you must assign each adapter a unique IP address on the appropriate network. 8 bit 8 bit 8 bit 8 bit
Prepared by Milkias, Dawit, Zelalem and
2 Sisay An IP address • Each address is 32 bits wide
• Valid addresses can range from 0.0.0.0 to
255.255.255.255
• Theoretically, a total of » 4.3 billion addresses are
available
Prepared by Milkias, Dawit, Zelalem and
3 Sisay Cont.. • Each address consists of two parts
1. The network address
2. The host address
Prepared by Milkias, Dawit, Zelalem and
4 Sisay Cont.. 1. Class A – begins with 0 • 00000001 (110) to 01111111 (12610)*
2. Class B – begins with 10
• 10000000 (12810) to 10111111 (19110)
3. Class C – begins with 110
• 11000000 (19210) to 11011111 (22310) Prepared by Milkias, Dawit, Zelalem and 5 Sisay 4. Class D – begins with 1110 • 22410 to 23910 • Reserved for multicasting
5. Class E – begins with 1111
• 24010 to 25410 • Reserved for future use
These should not be used for host addressing
Prepared by Milkias, Dawit, Zelalem and 6 Sisay IP Addresses • Class A- 1st octet 1-126 • Class B- 1st octet 128-191 • Class C- 1st octet 192-223 • Class D- 1st octet 224—239 • Class E 1st octet 240—255
*127 is reserved for loopback
Prepared by Milkias, Dawit, Zelalem and
7 Sisay IP Addresses…. • Class A- used for large network • Class B- used for medium network • Class C- used for small network • Class D- used for multicast group address • Class E reserved address
Prepared by Milkias, Dawit, Zelalem and
8 Sisay Subnneting
• Subnneting is a process of breaking large
network in small networks known as subnets. Subnneting happens when we extend default boundary of subnet mask. • Basically we borrow host bits to create networks
Prepared by Milkias, Dawit, Zelalem and
9 Sisay Advantage of Subnneting
• Subnneting breaks large network in smaller networks
and smaller networks are easier to manage. • Subnneting reduces network traffic by removing collision and broadcast traffic, that overall improve performance. • Subnneting allows you to apply network security polices at the interconnection between subnets. • Subnneting allows you to save money by reducing requirement for IP range.
Prepared by Milkias, Dawit, Zelalem and
10 Sisay Subnneting math
• Subnneting process involves binary math
calculation. Computers communicate with each others in binary language. To succeed in any kind of networking career, you might be fluent in binary math calculation. Subnneting needs two type of calculation, convert decimal to binary and convert binary to decimal
Prepared by Milkias, Dawit, Zelalem and
11 Sisay Binary math..
Prepared by Milkias, Dawit, Zelalem and
12 Sisay Cont.. • Network ID • First address of subnet is called network ID. This address is used to identify one segment or broadcast domain from all the other segments in the network. • Block Size • Block size is the size of subnet including network address, hosts addresses and broadcast address.
Prepared by Milkias, Dawit, Zelalem and
13 Sisay Cont.. • Broadcast ID • There are two types of broadcast, direct broadcast and full broadcast. • Direct broadcast or local broadcast is the last address of subnet and can be hear by all hosts in subnet. • Full broadcast is the last address of IP classes and can be hear by all IP hosts in network. Full broadcast address is 255.255.255.255 • The main difference between direct broadcast and full broadcast is that routers will not propagate local broadcasts between segments, but they will propagate directed broadcasts. • Host Addresses • All address between the network address and the directed broadcast address is called host address for the subnet. You can assign host addresses to any IP devices such as PCs, servers, routers, and switches Prepared by Milkias, Dawit, Zelalem and 14 Sisay CIDR [Classless Inter Domain Routing]
• CIDR is a slash notation of subnet mask. CIDR tells us number of
on bits in a network address. • Class A has default subnet mask 255.0.0.0. that means first octet of the subnet mask has all on bits. In slash notation it would be written as /8, means address has 8 bits on. • Class B has default subnet mask 255.255.0.0. That means first two octets of the subnet mask have all on bits. In slash notation it would be written as /16, means address has 16 bits on. • Class C has default subnet mask 255.255.255.0. That means first three octets of the subnet mask have all on bits. In slash notation it would be written as /24, means address has 24 bits on
Prepared by Milkias, Dawit, Zelalem and
15 Sisay Method of subnneting
• In subnneting we find the answer of following questions.
• What is subnet mask for given address? • How many subnets does given subnet mask provide? • What is block size for given subnet mask? • What are the valid subnets? • What are the total hosts? • How many valid hosts are available per subnet? • What is broadcast address of each subnet? • What is network address of each subnet