CS4500CS4500 Dr. ClincyLecture1 Lecture #1 Chapter 5: Addressing (part 1 of 3)
CS4500CS4500 Dr. ClincyLecture2 Physical Addressing Versus Network Addressing
CS4500CS4500 Dr. ClincyLecture3 IP Addresses Internetworking Protocol (IP) of the Network Layer is responsible for uniquely identifying all devices and connections on the Internet The unique identifier is called an IP address IP address consist of 32 bits (for version 4) Keep in mind that, if a single device had multiple connections to the Internet, you would need an IP address for each connection Address space is 2 32 = 4,294,967, bit addresses In theoretical terms, 4,294,967,296 connections can be made to the Internet (not really true in real life)
CS4500CS4500 Dr. ClincyLecture4 The IP Address has 3 notations: Binary, Dotted-decimal and HexadecimalThe IP Address has 3 notations: Binary, Dotted-decimal and Hexadecimal Binary: 4 Octets:Binary: 4 Octets: Dotted-Decimal (or dot notation): IP Addresses For Dotted-Decimal, each number can range from 0 to 255 Hexadecimal: D EA
CS4500CS4500 Dr. ClincyLecture5 Change the following IP address from binary notation to dotted-decimal notation: Solution EXAMPLES Change the following IP address from dotted-decimal notation to binary notation: Solution Find the error, if any, in the following IP address: Solution There are no leading zeroes in dotted-decimal notation (045). Change the following IP addresses from binary notation to hexadecimal notation: Solution 810B0BEF 16
CS4500CS4500 Dr. ClincyLecture6 IP Addresses: Classful Addressing When IP addressing was first started, it used a concept called “classful addressing”. A newer concept called “classless addressing” is slowly replacing it though. Regarding “classful addressing”, the address space is divided into five classes: A, B, C, D and E. Class# of addressesPercent of the Space A2 31 = % B2 30 = % C2 29 = % D2 28 = % E2 28 = %
CS4500CS4500 Dr. ClincyLecture7 Finding the class in binary notation Finding the class in decimal notation
CS4500CS4500 Dr. ClincyLecture8 Find the class of the address: Solution The first bit is 0. This is a class A address. Find the class of the address: Solution The first 2 bits are 1; the third bit is 0. This is a class C address. Find the class of the address: Solution The first byte is 227 (between 224 and 239); the class is D. EXAMPLES
CS4500CS4500 Dr. ClincyLecture9 Netid and hostid A, B and C class-addresses are divided into network id and host id For Class A, Netid=1 byte, Hostid = 3 bytes For Class B, Netid=2 bytes, Hostid = 2 bytes For Class C, Netid=3 bytes, Hostid = 1 byte
CS4500CS4500 Dr. ClincyLecture10 Blocks in class A Class A has 128 blocks or network ids First byte is the same (netid), the remaining 3 bytes can change (hostids) Network id 0 (first), Net id 127 (last) and Net id 10 are reserved – leaving 125 ids to be assigned to organizations/companies Each block contains 16,777,216 addresses – this block should be used by large organizations. How many Host can be addressed ???? The first address in the block is called the “network address” – defines the network of the organization Example Netid 73 is assigned Last address is reserved Recall: routers have addressees
CS4500CS4500 Dr. ClincyLecture11 Blocks in class B Class B is divided into 16,384 blocks (65,536 addresses each) 16 blocks are reserved First 2 bytes are the same (netid), the remaining 2 bytes can change (hostids) For example, Network id covers addresses to Network id is the last netid for this block Example Netid is assigned Last address is reserved Recall: routers have addresses
CS4500CS4500 Dr. ClincyLecture12 Blocks in class C Class C is divided into 2,097,152 blocks (256 addresses each) 256 blocks are reserved First 3 bytes are the same (netid), the remaining 1 byte can change (hostids) For example, Network id covers addresses to
CS4500CS4500 Dr. ClincyLecture13 Class D addresses are used for multicasting; there is only one block in this class. Class E addresses are reserved for special purposes; most of the block is wasted.
CS4500CS4500 Dr. ClincyLecture14 Network Addresses The network address is the first address. The network address defines the network to the rest of the Internet. Given the network address, we can find the class of the address, the block, and the range of the addresses in the block Given the network address , find the class, the block, and the range of the addresses. Solution The class is A because the first byte is between 0 and 127. The block has a netid of 17. The addresses range from to Given the network address , find the class, the block, and the range of the addresses. Solution The class is B because the first byte is between 128 and 191. The block has a netid of The addresses range from to Given the network address , find the class, the block, and the range of the addresses. The class is C because the first byte is between 192 and 223. The block has a netid of The addresses range from to Solution
CS4500CS4500 Dr. ClincyLecture15Mask A mask is a 32-bit binary number that gives the first address in the block (the network address) when bitwise ANDed with an address in the block. Given the network address, we can easily determine the block and range of addresses Suppose given the IP address, can we determine the network address (beginning of the block) ? To route packets to the correct network, a router must extract the network address from the destination IP address For example, given , we know this is a class B, therefore is the netid and is the network address (starting address of the block) How would we EXTRACT the network address from the IP address? We would use a MASK.
CS4500CS4500 Dr. ClincyLecture16 AND operation If bit is ANDed with 1, it’s preserved If bit is ANDed with 0, it’s changed to a 0. There are 3 default masks: one for each class. The default masks preserve the netid when ANDed with the addresses Class A Default Mask: Class B Default Mask: Class C Default Mask: A simple way to determine the netid for un-subnetted cases: (1) if mask byte is 255, retain corresponding byte of the address, (2) if mask byte is 0, set corresponding address byte to 0.
CS4500CS4500 Dr. ClincyLecture17 Examples Given the address and the default class A mask, find the beginning address (network address). Solution The default mask is , which means that only the first byte is preserved and the other 3 bytes are set to 0s. The network address is Given the address and the default class B mask, find the beginning address (network address). The default mask is , which means that the first 2 bytes are preserved and the other 2 bytes are set to 0s. The network address is Solution Given the address and the class C default mask, find the beginning address (network address). The default mask is , which means that the first 3 bytes are preserved and the last byte is set to 0. The network address is Solution
CS4500CS4500 Dr. ClincyLecture18 Recall IP Addresses: Classful Addressing Class# of addressesPercent of the Space A2 31 = % B2 30 = % C2 29 = % D2 28 = % E2 28 = %
CS4500CS4500 Dr. ClincyLecture19 5-bit Address Space Illustration No Netid case 32 addresses/block Number of blocks: 1 Address range per block: 0 to 31 Netids: N/A Network Addresses : Broadcast Addresses: 11111
CS4500CS4500 Dr. ClincyLecture20 1-bit Netid case 16 addresses/block Number of blocks: 2 Address range per block: 0 to 15 Netids: 0, 1 Network Addresses : 00000, Broadcast Addresses: 01111, bit Address Space Illustration
CS4500CS4500 Dr. ClincyLecture21 2-bit Netid Case 8 addresses/block Number of blocks: 4 Address range per block: 0 to 7 Netids: 00, 01, 10, 11 Network Addresses : 00000, 01000, 10000, Broadcast Addresses: 00111, 01111, 10111, bit Address Space Illustration
CS4500CS4500 Dr. ClincyLecture22 3-bit Netid Case 4 addresses/block Number of blocks: 8 Address range per block: 0 to 3 Netids: 000, 001, 010, 011, 100, 101, 110, 111 Network Addresses : 00000, 00100, 01000, , 10100, 11000, Broadcast Addresses: 00011, 00111, 01011, , 10111, 11011, bit Address Space Illustration
CS4500CS4500 Dr. ClincyLecture23 4 addresses/block and 8 addresses/block Number of blocks: 6 Address range per block: 0 to 3 and 0 to 7 Netids: 000, 001, 010, 011, 10, 11 Network Addresses : 00000, 00100, 01000, , Broadcast Addresses: 00011, 00111, 01011, , Mixing 3-bit & 2-bit Cases (think of the 32-bit case)