CCNA 1 - Week 07-08-IP Addressing
CCNA 1 - Week 07-08-IP Addressing
Networking
Week 07 & 08, Units 08 & 09:
IP Addressing
IP Addressing
Learning Objectives
• Keyboard
– Device whose key strokes are usually interpreted by
software into some type of symbol or symbols.
– For example, the capital letter “A,” typed into a word
processing document, is sent electronically in binary
code to the motherboard (as “01000001”) and output
on the monitor in alphabetic format.
• Same logic governs IP addressing
11000000.10101000.00001010.00000001
192 168 10 1
• Unicast – 1:1
– One host communicates with one other host in its
network
• Broadcast – 1: All
– One host communicates with all of the other hosts in
its network
• Multicast – 1: Many
– One host communicates with many of the other hosts
in its network – but not all of them!
• Created 4 networks:
– Subnet A:
• 100 host addresses needed
• Need to keep only 7 host bits
• Allocate all remaining bits as network bits
• Start IP address: 10.0.0.1
• End IP address: 10.0.0.127
• New prefix & mask: 32 - 7 = /25
– 255.255.255.128
Version 1.0/Spring 2013 CCNA 1 – An Introduction to Networking 36
VLSM Solution: Subnet B
– Subnet B:
• 50 host addresses needed
• Need to keep only 6 host bits
• Allocate all remaining bits as network bits
• Start IP address: 10.0.0.128
• End IP address: 10.0.0.191
• New prefix & mask: 32 - 6 = /26
– 255.255.255.192
– Subnet C:
• 13 host addresses needed
• Need to keep only 4 host bits
• Allocate all remaining bits as network bits
• Start IP address: 10.0.0.192
• End IP address: 10.0.0.207
• New prefix & mask: 32 - 4 = /28
– 255.255.255.240
– Subnet D:
• 2 host addresses needed
• Need to keep only 2 host bits
• Allocate all remaining bits as network bits
• Start IP address: 10.0.0.208
• End IP address: 10.0.0.211
• New prefix & mask: 32 - 2 = /30
– 255.255.255.252
New
Subnet # Subnet Address First Usable Last Usable Broadcast New Subnet Mask
Prefix
A 10.0.0.0 10.0.0.1 10.0.0.126 10.0.0.127 /27 255.255.255.128
B 10.0.0.128 10.0.0.129 10.0.0.190 10.0.0.191 /26 255.255.255.192
C 10.0.0.192 10.0.0.193 10.0.0.206 10.0.0.207 /28 255.255.255.240
D 10.0.0.208 10.0.0.209 10.0.0.210 10.0.0.211 /30 255.255.255.252
Next 10.0.0.212 10.0.0.213 Unkknown Unkknown Unkknown Unknown
• My trace route
command began
in Oregon and
ended in California
• Will learn more
about ping & trace
route commands
later in course