SlideShare a Scribd company logo
1 of 21
IP Addressing
What is an IP Address?
• An IP address is a numeric identifier assigned
to each machine on an IP network. It
designates the location of a device on the
network. An IP address is a software address,
not a hardware address
What IP Addressing ?
• An IP address is a numeric identifier assigned
to each machine on an IP network. It
designates the location of a device on the
network. An IP address is a software address,
not a hardware address
IP Terminology
• Bit One digit; either a 1 or a 0.
• Byte - 8 bits
• Octet Always 8 bits. Base-8 addressing scheme.
• Network address The designation used in
routing to send packets to a remote network, for
example, 10.0.0.0, 172.16.0.0, and 192.168.10.0.
• Broadcast address Used by applications and
hosts to send information to all nodes on a
network. Examples include 255.255.255.255,
which is all networks
Basic Addressing
10.1.1.1
• IP addresses are written
in dotted decimal format.
• Four sections are
separated by dots.
• Each section contains a
number between 0 and
255.
Dots separate the sections
Each section contains
a number between 0
and 255
Basic Addressing
10.1.1.1
• Why is each section a number
between 0 and 255?
• Computers operate in binary,
humans operate in decimal.
• Computers treat IP addresses
as a single large 32 digit binary
number, but this is hard for
people to do.
• So, we split them up into four
smaller sections so we can
remember and work with them
better!
Dots separate the sections
Each section contains
a number between 0
and 255
Why????
Basic Addressing
10.1.1.1
• 32/4 == 8.
• 28 = 256.
• But, computers number
starting at 0, so to make a
space of 256 numbers, we
number from 0 to 255.
00001010 00000001 00000001 00000001
8 8 8 8
32
Each 8 digit group represents
a number between 0 and 255
Basic Addressing
10.1.1.1
• Each device on a network is
assigned an IP address.
• Each IP address has two
fundamental parts:
• The network portion, which
describes the physical wire
the device is attached to.
• The host portion, which
identifies the host on that
wire.
• How can we tell the
difference between the two
sections?
00001010 00000001 00000001 00000001
Network
Host
Basic Addressing
10.1.1.1
• The network mask shows us
where to split the network and
host sections.
• Each place there is a 1 in the
network mask, that binary
digit belongs to the network
portion of the address.
• Each place there is a 0 in the
network mask, that binary
digit belongs to the host
portion of the address.
00001010 00000001 00000001 00000001
Network
Host
255.255.255.0
11111111 11111111 11111111 00000000
Basic Addressing
10.1.1.1
• An alternative set of
terminology is:
• The network portion of the
address is called the prefix.
• The host portion of the
address is called the host.
• The network mask is
expressed as a prefix length,
which is a count of the
number of 1’s in the subnet
mask.
00001010 00000001 00000001 00000001
Prefix
Host
11111111 11111111 11111111 00000000
8 + 8 + 8 = 24
10.1.1.1/24
Basic Addressing
• The network address is the
IP address with all 0’s in the
host bits.
• The broadcast address is
the IP address with all 1’s in
the host bits.
• Packets sent to either
address will be delivered to
all the hosts connected to
the wire.
10 1 1 0/24
00001010 000000011 00000001 00000000
prefix host
these bits are 0, so this is the network address
10 1 1 255/24
00001010 000000011 00000001 11111111
prefix host
these bits are 1, so this is the broadcast address
Working with Addresses
• Two of the most common
questions you are going
to face when dealing with
IP addresses are:
• What’s the network?
• What’s the host?
• How do we figure this
out?
192.168.100.80/26
????
Working with Addresses (The Hard
Way)
• First, convert the IP address
into binary. This is easier than
it looks.
• Work with one octet at a time.
• Divide by two, farm out the
remainder on the side.
• The bottom is the binary MSD,
the top the binary LSD.
192
96 0
divide by 2
remainder
48 0
divide by 2
remainder
24 0
divide by 2
remainder
12 0
divide by 2
remainder
6 0
divide by 2
remainder
3 0
divide by 2
remainder
1 1
divide by 2
remainder
0 1
divide by 2
remainder
LeftRight
Working with Addresses (The Hard
Way)
Write down the IP
address.
11000000 10101000 01100100 01010000
192 168 100 80
If you have a prefix
length, just wrote
down the number of
1’s. If you have a
network mask,
computer the binary
as with the IP
address.
11111111 11111111 11111111 11000000
8 +8 +8 +2 == 26
AND these two. 11000000 10101000 01100100 01000000
Convert back to
dotted decimal. This
is the network
address.
192 168 100 64
Working with Addresses (The Hard
Way)
Write down the IP
address.
11000000 10101000 01100100 01010000
192 168 100 80
If you have a prefix
length, just wrote
down the number of
1’s. If you have a
network mask,
computer the binary
as with the IP
address.
11111111 11111111 11111111 11000000
8 +8 +8 +2 == 26
NOR these two. 00000000 00000000 00000000 00010000
Convert back to
dotted decimal. This
is the host address.
0 0 0 16
Working with Addresses (The Hard
Way)
• To convert from binary to
decimal, use a simple
chart.
• Add the number indicated
for each 1 set in the
binary number.
128 1 128
64 0 0
32 1 32
16 0 0
8 1 8
4 0 0
2 0 0
1 0 0
168
CLASSES OF IP
Class A: Network Host Host Host
Class B: Network Network Host Host
Class C: Network Network Network Host
Class D: Multicast
Class E: Research
Network Address Range: Class A
The designers of the IP address scheme said that the first bit of the
first byte in a Class A network address must always be off, or 0. This means
a Class A address must be between 0 and 127.
Network Address Range: Class B
In a Class B network, the RFCs state that the first
bit of the first byte must always be turned on, but the
second bit must always be turned off. If you turn the
other six bits all off and then all on, you will find the
range for a
Class B network:
10000000=128
10111111=191
Class B network can be defined when the first byte is
configured from
128 to 191.
Network Address Range: Class C
For Class C networks, the RFCs define the first two bits of
the first octet always turned on, but the third bit can never be on.
Following the same process as the previous classes, convert from
binary to decimal to find the range.
Here is the range for a Class C network:
11000000=192
11011111=223
IP address that starts at 192 and goes to 223, you’ll know
it is a Class C IP address.
Network Address Ranges: Classes D and E
The addresses between 224 and 255 are reserved for Class
D and E networks. Class D is used for multicast addresses and Class
E for scientific purposes. We will not discuss Class D and E
addresses in this book.
PUBLIC AND PRIVATE IP
PRIVATE IP
CLASS A - 10.0.0.0 - 10.255.255.255
CLASS B - 172.16.0.0 - 172.31.255.255
CLASS C - 192.168.0.0 - 192.168.255.255
PUBLIC IP
APART FROM THE ABOVE SPECIFIED IP ADDRESS ALL OTHER IP ADDRESS ARE PUBLIC IP
NOTE:-IPV4 IS ALSO CALLED DECIMAL DOTTED NOTATION WHERE AS IPV6 IS CALLED
HEXADECIMAL DTTED NOTATION

More Related Content

What's hot

Computer Ports
Computer PortsComputer Ports
Computer PortsNetwax Lab
 
RARP, BOOTP, DHCP and PXE Protocols
RARP, BOOTP, DHCP and PXE ProtocolsRARP, BOOTP, DHCP and PXE Protocols
RARP, BOOTP, DHCP and PXE ProtocolsPeter R. Egli
 
Ethernet Computer network
Ethernet Computer networkEthernet Computer network
Ethernet Computer networkmiteshppt
 
ASYNCHRONOUS TRANSFER MODE (ATM)
ASYNCHRONOUS TRANSFER MODE (ATM)ASYNCHRONOUS TRANSFER MODE (ATM)
ASYNCHRONOUS TRANSFER MODE (ATM)ZillayHuma Mehmood
 
Socket programming using C
Socket programming using CSocket programming using C
Socket programming using CAjit Nayak
 
Data communication - Lecture-01
Data communication - Lecture-01 Data communication - Lecture-01
Data communication - Lecture-01 Sehrish Rafiq
 
Networking Fundamentals
Networking  FundamentalsNetworking  Fundamentals
Networking FundamentalsManjit Chavda
 
16 x 16 banyan switch
16 x 16 banyan switch16 x 16 banyan switch
16 x 16 banyan switchAshu0711
 
basic networking
basic networkingbasic networking
basic networkingAnmol Bagga
 
Dcn notea unit 1 ppt
Dcn notea unit  1 pptDcn notea unit  1 ppt
Dcn notea unit 1 pptQazi Ahmad
 
Route Redistribution
Route RedistributionRoute Redistribution
Route RedistributionNetwax Lab
 
VoIP Wars: Attack of the Cisco Phones
VoIP Wars: Attack of the Cisco PhonesVoIP Wars: Attack of the Cisco Phones
VoIP Wars: Attack of the Cisco PhonesFatih Ozavci
 
Network topologies
Network topologiesNetwork topologies
Network topologiesNorah Saad
 

What's hot (20)

Routing Algorithm
Routing AlgorithmRouting Algorithm
Routing Algorithm
 
Computer Ports
Computer PortsComputer Ports
Computer Ports
 
Tcp IP Model
Tcp IP ModelTcp IP Model
Tcp IP Model
 
RARP, BOOTP, DHCP and PXE Protocols
RARP, BOOTP, DHCP and PXE ProtocolsRARP, BOOTP, DHCP and PXE Protocols
RARP, BOOTP, DHCP and PXE Protocols
 
Ethernet Computer network
Ethernet Computer networkEthernet Computer network
Ethernet Computer network
 
Tcp ip
Tcp ipTcp ip
Tcp ip
 
ASYNCHRONOUS TRANSFER MODE (ATM)
ASYNCHRONOUS TRANSFER MODE (ATM)ASYNCHRONOUS TRANSFER MODE (ATM)
ASYNCHRONOUS TRANSFER MODE (ATM)
 
Socket programming using C
Socket programming using CSocket programming using C
Socket programming using C
 
Data communication - Lecture-01
Data communication - Lecture-01 Data communication - Lecture-01
Data communication - Lecture-01
 
Border Gatway Protocol
Border Gatway ProtocolBorder Gatway Protocol
Border Gatway Protocol
 
Networking Fundamentals
Networking  FundamentalsNetworking  Fundamentals
Networking Fundamentals
 
Routing
RoutingRouting
Routing
 
16 x 16 banyan switch
16 x 16 banyan switch16 x 16 banyan switch
16 x 16 banyan switch
 
Ospf
 Ospf Ospf
Ospf
 
basic networking
basic networkingbasic networking
basic networking
 
Dcn notea unit 1 ppt
Dcn notea unit  1 pptDcn notea unit  1 ppt
Dcn notea unit 1 ppt
 
TCP/IP
TCP/IPTCP/IP
TCP/IP
 
Route Redistribution
Route RedistributionRoute Redistribution
Route Redistribution
 
VoIP Wars: Attack of the Cisco Phones
VoIP Wars: Attack of the Cisco PhonesVoIP Wars: Attack of the Cisco Phones
VoIP Wars: Attack of the Cisco Phones
 
Network topologies
Network topologiesNetwork topologies
Network topologies
 

Similar to Ip addressing

Student IP Addressing Tutorial.ppt
Student IP Addressing Tutorial.pptStudent IP Addressing Tutorial.ppt
Student IP Addressing Tutorial.pptjohnBronson6
 
Ipaddress presentationdemoclass
Ipaddress presentationdemoclassIpaddress presentationdemoclass
Ipaddress presentationdemoclassaskme
 
Networking Brush Up for Amazon AWS Administrators
Networking Brush Up for Amazon AWS AdministratorsNetworking Brush Up for Amazon AWS Administrators
Networking Brush Up for Amazon AWS AdministratorsAniekan Akpaffiong
 
Cisco ip-addressing
Cisco ip-addressingCisco ip-addressing
Cisco ip-addressingaskme
 
Ip address and subnet masking final
Ip address and subnet masking finalIp address and subnet masking final
Ip address and subnet masking finalNeerajBhardwaj57
 
Networking Chapter 7
Networking Chapter 7Networking Chapter 7
Networking Chapter 7mlrbrown
 
Lesson 5a_IP Addressing.pptx
Lesson 5a_IP Addressing.pptxLesson 5a_IP Addressing.pptx
Lesson 5a_IP Addressing.pptxKISHOYIANKISH
 
IP_ADDRESSING_AND_SUBNETTING.pptx
IP_ADDRESSING_AND_SUBNETTING.pptxIP_ADDRESSING_AND_SUBNETTING.pptx
IP_ADDRESSING_AND_SUBNETTING.pptxgamerchan1
 
Topic 2.3 network addressing for tcpip
Topic 2.3 network addressing for tcpipTopic 2.3 network addressing for tcpip
Topic 2.3 network addressing for tcpipAtika Zaimi
 
1703_anusua_basuclassful addressing_IP_Addressing
1703_anusua_basuclassful addressing_IP_Addressing1703_anusua_basuclassful addressing_IP_Addressing
1703_anusua_basuclassful addressing_IP_AddressingAnusuaBasu
 

Similar to Ip addressing (20)

Subnetting
SubnettingSubnetting
Subnetting
 
chapter 5 (1).ppt
chapter 5 (1).pptchapter 5 (1).ppt
chapter 5 (1).ppt
 
Student IP Addressing Tutorial.ppt
Student IP Addressing Tutorial.pptStudent IP Addressing Tutorial.ppt
Student IP Addressing Tutorial.ppt
 
iP Address ,
 iP Address , iP Address ,
iP Address ,
 
Ipaddress presentationdemoclass
Ipaddress presentationdemoclassIpaddress presentationdemoclass
Ipaddress presentationdemoclass
 
Networking Brush Up for Amazon AWS Administrators
Networking Brush Up for Amazon AWS AdministratorsNetworking Brush Up for Amazon AWS Administrators
Networking Brush Up for Amazon AWS Administrators
 
Cisco ip-addressing
Cisco ip-addressingCisco ip-addressing
Cisco ip-addressing
 
Ip address and subnet masking final
Ip address and subnet masking finalIp address and subnet masking final
Ip address and subnet masking final
 
How IP address works
How IP address worksHow IP address works
How IP address works
 
Networking Chapter 7
Networking Chapter 7Networking Chapter 7
Networking Chapter 7
 
chapter 4.pptx
chapter 4.pptxchapter 4.pptx
chapter 4.pptx
 
Lesson 5a_IP Addressing.pptx
Lesson 5a_IP Addressing.pptxLesson 5a_IP Addressing.pptx
Lesson 5a_IP Addressing.pptx
 
IP Addressing
IP AddressingIP Addressing
IP Addressing
 
Ip addressing
Ip addressingIp addressing
Ip addressing
 
Internet Protocol
Internet ProtocolInternet Protocol
Internet Protocol
 
3 ip address
3 ip address3 ip address
3 ip address
 
IP_ADDRESSING_AND_SUBNETTING.pptx
IP_ADDRESSING_AND_SUBNETTING.pptxIP_ADDRESSING_AND_SUBNETTING.pptx
IP_ADDRESSING_AND_SUBNETTING.pptx
 
Topic 2.3 network addressing for tcpip
Topic 2.3 network addressing for tcpipTopic 2.3 network addressing for tcpip
Topic 2.3 network addressing for tcpip
 
1703_anusua_basuclassful addressing_IP_Addressing
1703_anusua_basuclassful addressing_IP_Addressing1703_anusua_basuclassful addressing_IP_Addressing
1703_anusua_basuclassful addressing_IP_Addressing
 
IP Address
IP AddressIP Address
IP Address
 

More from Tapan Khilar

CYBER SECURITY AWARENESS.pptx
CYBER SECURITY AWARENESS.pptxCYBER SECURITY AWARENESS.pptx
CYBER SECURITY AWARENESS.pptxTapan Khilar
 
SNMP_ network monitoring.pptx
SNMP_ network monitoring.pptxSNMP_ network monitoring.pptx
SNMP_ network monitoring.pptxTapan Khilar
 
cctv setup (2).pptx
cctv setup (2).pptxcctv setup (2).pptx
cctv setup (2).pptxTapan Khilar
 
cyber security.pptx
cyber security.pptxcyber security.pptx
cyber security.pptxTapan Khilar
 
IT ACT 2000 _ AA 2008_TAPAN.pptx
IT ACT 2000 _ AA 2008_TAPAN.pptxIT ACT 2000 _ AA 2008_TAPAN.pptx
IT ACT 2000 _ AA 2008_TAPAN.pptxTapan Khilar
 
mobile security.pptx
mobile security.pptxmobile security.pptx
mobile security.pptxTapan Khilar
 
Snmp network monitoring
Snmp  network monitoringSnmp  network monitoring
Snmp network monitoringTapan Khilar
 
Server operating system
Server operating systemServer operating system
Server operating systemTapan Khilar
 
Memory and storage
Memory and storageMemory and storage
Memory and storageTapan Khilar
 
Input and output device
Input and output deviceInput and output device
Input and output deviceTapan Khilar
 
I series processor
I series  processorI series  processor
I series processorTapan Khilar
 
Computer networking
Computer networkingComputer networking
Computer networkingTapan Khilar
 

More from Tapan Khilar (20)

CYBER SECURITY AWARENESS.pptx
CYBER SECURITY AWARENESS.pptxCYBER SECURITY AWARENESS.pptx
CYBER SECURITY AWARENESS.pptx
 
SNMP_ network monitoring.pptx
SNMP_ network monitoring.pptxSNMP_ network monitoring.pptx
SNMP_ network monitoring.pptx
 
cctv setup (2).pptx
cctv setup (2).pptxcctv setup (2).pptx
cctv setup (2).pptx
 
FIBER OPTICS .ppt
FIBER OPTICS .pptFIBER OPTICS .ppt
FIBER OPTICS .ppt
 
IDS VS IPS.pptx
IDS VS IPS.pptxIDS VS IPS.pptx
IDS VS IPS.pptx
 
cyber security.pptx
cyber security.pptxcyber security.pptx
cyber security.pptx
 
IT ACT 2000 _ AA 2008_TAPAN.pptx
IT ACT 2000 _ AA 2008_TAPAN.pptxIT ACT 2000 _ AA 2008_TAPAN.pptx
IT ACT 2000 _ AA 2008_TAPAN.pptx
 
mobile security.pptx
mobile security.pptxmobile security.pptx
mobile security.pptx
 
Acl cisco
Acl ciscoAcl cisco
Acl cisco
 
Data security
Data securityData security
Data security
 
Snmp network monitoring
Snmp  network monitoringSnmp  network monitoring
Snmp network monitoring
 
Server operating system
Server operating systemServer operating system
Server operating system
 
Operating systems
Operating systemsOperating systems
Operating systems
 
Network switch
Network switchNetwork switch
Network switch
 
Network devices
Network devicesNetwork devices
Network devices
 
Memory and storage
Memory and storageMemory and storage
Memory and storage
 
Internet security
Internet securityInternet security
Internet security
 
Input and output device
Input and output deviceInput and output device
Input and output device
 
I series processor
I series  processorI series  processor
I series processor
 
Computer networking
Computer networkingComputer networking
Computer networking
 

Recently uploaded

Hifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightHifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightKomal Khan
 
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一diploma 1
 
Hindu amil baba kala jadu expert in pakistan islamabad lahore karachi atar ...
Hindu amil baba kala jadu expert  in pakistan islamabad lahore karachi atar  ...Hindu amil baba kala jadu expert  in pakistan islamabad lahore karachi atar  ...
Hindu amil baba kala jadu expert in pakistan islamabad lahore karachi atar ...amilabibi1
 
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...Amil baba
 
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...Amil Baba Dawood bangali
 
the cOMPUTER SYSTEM - computer hardware servicing.pptx
the cOMPUTER SYSTEM - computer hardware servicing.pptxthe cOMPUTER SYSTEM - computer hardware servicing.pptx
the cOMPUTER SYSTEM - computer hardware servicing.pptxLeaMaePahinagGarciaV
 
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degreeyuu sss
 
Dubai Call Girls O525547819 Spring Break Fast Call Girls Dubai
Dubai Call Girls O525547819 Spring Break Fast Call Girls DubaiDubai Call Girls O525547819 Spring Break Fast Call Girls Dubai
Dubai Call Girls O525547819 Spring Break Fast Call Girls Dubaikojalkojal131
 
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degreeyuu sss
 
existing product research b2 Sunderland Culture
existing product research b2 Sunderland Cultureexisting product research b2 Sunderland Culture
existing product research b2 Sunderland CultureChloeMeadows1
 
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRReal Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRdollysharma2066
 
萨斯喀彻温大学毕业证学位证成绩单-购买流程
萨斯喀彻温大学毕业证学位证成绩单-购买流程萨斯喀彻温大学毕业证学位证成绩单-购买流程
萨斯喀彻温大学毕业证学位证成绩单-购买流程1k98h0e1
 
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证gwhohjj
 
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best ServicesVip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Servicesnajka9823
 
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)861c7ca49a02
 
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...Amil Baba Dawood bangali
 
RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作f3774p8b
 
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...Amil baba
 
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作ss846v0c
 
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree z zzz
 

Recently uploaded (20)

Hifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightHifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun Tonight
 
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一
办理(CSU毕业证书)澳洲查理斯特大学毕业证成绩单原版一比一
 
Hindu amil baba kala jadu expert in pakistan islamabad lahore karachi atar ...
Hindu amil baba kala jadu expert  in pakistan islamabad lahore karachi atar  ...Hindu amil baba kala jadu expert  in pakistan islamabad lahore karachi atar  ...
Hindu amil baba kala jadu expert in pakistan islamabad lahore karachi atar ...
 
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...
NO1 Certified Vashikaran Specialist in Uk Black Magic Specialist in Uk Black ...
 
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...
NO1 Certified Black Magic Specialist Expert In Bahawalpur, Sargodha, Sialkot,...
 
the cOMPUTER SYSTEM - computer hardware servicing.pptx
the cOMPUTER SYSTEM - computer hardware servicing.pptxthe cOMPUTER SYSTEM - computer hardware servicing.pptx
the cOMPUTER SYSTEM - computer hardware servicing.pptx
 
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
 
Dubai Call Girls O525547819 Spring Break Fast Call Girls Dubai
Dubai Call Girls O525547819 Spring Break Fast Call Girls DubaiDubai Call Girls O525547819 Spring Break Fast Call Girls Dubai
Dubai Call Girls O525547819 Spring Break Fast Call Girls Dubai
 
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
 
existing product research b2 Sunderland Culture
existing product research b2 Sunderland Cultureexisting product research b2 Sunderland Culture
existing product research b2 Sunderland Culture
 
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRReal Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
 
萨斯喀彻温大学毕业证学位证成绩单-购买流程
萨斯喀彻温大学毕业证学位证成绩单-购买流程萨斯喀彻温大学毕业证学位证成绩单-购买流程
萨斯喀彻温大学毕业证学位证成绩单-购买流程
 
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
 
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best ServicesVip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
 
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
 
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uk England Northern ...
 
RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作
 
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...
NO1 Qualified Best Black Magic Specialist Near Me Spiritual Healer Powerful L...
 
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作
美国IUB学位证,印第安纳大学伯明顿分校毕业证书1:1制作
 
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree加拿大瑞尔森大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 

Ip addressing

  • 2. What is an IP Address? • An IP address is a numeric identifier assigned to each machine on an IP network. It designates the location of a device on the network. An IP address is a software address, not a hardware address
  • 3. What IP Addressing ? • An IP address is a numeric identifier assigned to each machine on an IP network. It designates the location of a device on the network. An IP address is a software address, not a hardware address
  • 4. IP Terminology • Bit One digit; either a 1 or a 0. • Byte - 8 bits • Octet Always 8 bits. Base-8 addressing scheme. • Network address The designation used in routing to send packets to a remote network, for example, 10.0.0.0, 172.16.0.0, and 192.168.10.0. • Broadcast address Used by applications and hosts to send information to all nodes on a network. Examples include 255.255.255.255, which is all networks
  • 5. Basic Addressing 10.1.1.1 • IP addresses are written in dotted decimal format. • Four sections are separated by dots. • Each section contains a number between 0 and 255. Dots separate the sections Each section contains a number between 0 and 255
  • 6. Basic Addressing 10.1.1.1 • Why is each section a number between 0 and 255? • Computers operate in binary, humans operate in decimal. • Computers treat IP addresses as a single large 32 digit binary number, but this is hard for people to do. • So, we split them up into four smaller sections so we can remember and work with them better! Dots separate the sections Each section contains a number between 0 and 255 Why????
  • 7. Basic Addressing 10.1.1.1 • 32/4 == 8. • 28 = 256. • But, computers number starting at 0, so to make a space of 256 numbers, we number from 0 to 255. 00001010 00000001 00000001 00000001 8 8 8 8 32 Each 8 digit group represents a number between 0 and 255
  • 8. Basic Addressing 10.1.1.1 • Each device on a network is assigned an IP address. • Each IP address has two fundamental parts: • The network portion, which describes the physical wire the device is attached to. • The host portion, which identifies the host on that wire. • How can we tell the difference between the two sections? 00001010 00000001 00000001 00000001 Network Host
  • 9. Basic Addressing 10.1.1.1 • The network mask shows us where to split the network and host sections. • Each place there is a 1 in the network mask, that binary digit belongs to the network portion of the address. • Each place there is a 0 in the network mask, that binary digit belongs to the host portion of the address. 00001010 00000001 00000001 00000001 Network Host 255.255.255.0 11111111 11111111 11111111 00000000
  • 10. Basic Addressing 10.1.1.1 • An alternative set of terminology is: • The network portion of the address is called the prefix. • The host portion of the address is called the host. • The network mask is expressed as a prefix length, which is a count of the number of 1’s in the subnet mask. 00001010 00000001 00000001 00000001 Prefix Host 11111111 11111111 11111111 00000000 8 + 8 + 8 = 24 10.1.1.1/24
  • 11. Basic Addressing • The network address is the IP address with all 0’s in the host bits. • The broadcast address is the IP address with all 1’s in the host bits. • Packets sent to either address will be delivered to all the hosts connected to the wire. 10 1 1 0/24 00001010 000000011 00000001 00000000 prefix host these bits are 0, so this is the network address 10 1 1 255/24 00001010 000000011 00000001 11111111 prefix host these bits are 1, so this is the broadcast address
  • 12. Working with Addresses • Two of the most common questions you are going to face when dealing with IP addresses are: • What’s the network? • What’s the host? • How do we figure this out? 192.168.100.80/26 ????
  • 13. Working with Addresses (The Hard Way) • First, convert the IP address into binary. This is easier than it looks. • Work with one octet at a time. • Divide by two, farm out the remainder on the side. • The bottom is the binary MSD, the top the binary LSD. 192 96 0 divide by 2 remainder 48 0 divide by 2 remainder 24 0 divide by 2 remainder 12 0 divide by 2 remainder 6 0 divide by 2 remainder 3 0 divide by 2 remainder 1 1 divide by 2 remainder 0 1 divide by 2 remainder LeftRight
  • 14. Working with Addresses (The Hard Way) Write down the IP address. 11000000 10101000 01100100 01010000 192 168 100 80 If you have a prefix length, just wrote down the number of 1’s. If you have a network mask, computer the binary as with the IP address. 11111111 11111111 11111111 11000000 8 +8 +8 +2 == 26 AND these two. 11000000 10101000 01100100 01000000 Convert back to dotted decimal. This is the network address. 192 168 100 64
  • 15. Working with Addresses (The Hard Way) Write down the IP address. 11000000 10101000 01100100 01010000 192 168 100 80 If you have a prefix length, just wrote down the number of 1’s. If you have a network mask, computer the binary as with the IP address. 11111111 11111111 11111111 11000000 8 +8 +8 +2 == 26 NOR these two. 00000000 00000000 00000000 00010000 Convert back to dotted decimal. This is the host address. 0 0 0 16
  • 16. Working with Addresses (The Hard Way) • To convert from binary to decimal, use a simple chart. • Add the number indicated for each 1 set in the binary number. 128 1 128 64 0 0 32 1 32 16 0 0 8 1 8 4 0 0 2 0 0 1 0 0 168
  • 17. CLASSES OF IP Class A: Network Host Host Host Class B: Network Network Host Host Class C: Network Network Network Host Class D: Multicast Class E: Research Network Address Range: Class A The designers of the IP address scheme said that the first bit of the first byte in a Class A network address must always be off, or 0. This means a Class A address must be between 0 and 127.
  • 18. Network Address Range: Class B In a Class B network, the RFCs state that the first bit of the first byte must always be turned on, but the second bit must always be turned off. If you turn the other six bits all off and then all on, you will find the range for a Class B network: 10000000=128 10111111=191 Class B network can be defined when the first byte is configured from 128 to 191.
  • 19. Network Address Range: Class C For Class C networks, the RFCs define the first two bits of the first octet always turned on, but the third bit can never be on. Following the same process as the previous classes, convert from binary to decimal to find the range. Here is the range for a Class C network: 11000000=192 11011111=223 IP address that starts at 192 and goes to 223, you’ll know it is a Class C IP address.
  • 20. Network Address Ranges: Classes D and E The addresses between 224 and 255 are reserved for Class D and E networks. Class D is used for multicast addresses and Class E for scientific purposes. We will not discuss Class D and E addresses in this book.
  • 21. PUBLIC AND PRIVATE IP PRIVATE IP CLASS A - 10.0.0.0 - 10.255.255.255 CLASS B - 172.16.0.0 - 172.31.255.255 CLASS C - 192.168.0.0 - 192.168.255.255 PUBLIC IP APART FROM THE ABOVE SPECIFIED IP ADDRESS ALL OTHER IP ADDRESS ARE PUBLIC IP NOTE:-IPV4 IS ALSO CALLED DECIMAL DOTTED NOTATION WHERE AS IPV6 IS CALLED HEXADECIMAL DTTED NOTATION