IP addresses are __-bit numbers divided into four _-bit values called octets, each octet can have a value from _ to ___
IP addresses are 32-bit numbers divided into four 8-bit values called octets, each octet can have a value from 0 to 255
Subnet masks are also __-bit numbers, that serve to determine how many bits are allocated to a ___ __, and how many are allocated to a ___ __
Subnet masks are also 32-bit numbers, that serve to determine how many bits are allocated to a network ID, and how many are allocated to a host ID
192.168.14.250 = 11000000.10101000.0001110.11111010 255.255.255.0 = 11111111.11111111.11111111.00000000
192.168.14.250 = 11000000.10101000.0001110.11111010 255.255.255.0 = 11111111.11111111.11111111.00000000
How is the subnet mask used to determine the network ID?
Computers determine the network ID by doing a logical AND operation between its IP address and subnet mask. A logical AND is an operation between two binary values. AND operations can have the following results: 0 AND 0 = 0 1 AND 0 = 0 0 AND 1 = 0 1 AND 1 = 1 The logical AND operation between a computer’s IP address and subnet mask looks like this: 10101100.00011111.01100100.00000110 (binary for 172.31.100.6) AND 11111111.11111111.00000000.00000000 (binary for 255.255.0.0) ____________________________ 10101100.00011111.00000000.00000000 (binary for 172.31.0.0)
How do i convert 125 from Decimal to Binary
To convert 125 to binary use the following chart and follow the directions: 128_64_32_16_8_4_2_1 0___1__1___1__1_1_0_1 125 is less than 128, so you place a 0 in the column under the 128. The test number remains 125 125 is greater than 64, so you place a 1 in the column under the 64 and subtract 64 from 125, leaving your new test number as 61 61 is greater than 32, so you place a 1 in the column under the 32 and subtract 32 from 61, leaving your new test number as 29 29 is greater than 16, so you place a 1 in the column under the 16 and subtract 16 from 29, leaving your new test number as 13
Converting Binary to Decimal the Simplest way: 11010011
Using the binary number 11010011, you get the following: 128+64+0+16+0+0+2+1 = 211
What is IP Address class A
What is IP Address class B
What is IP Address class C
What is IP Address class D
What is IP Address class E
What are reserved addresses?
Which addresses are reserved?
Addresses that can’t be routed except for the specific entities that have them reserved.
What is a link-local address
What is Automatic Private IP Addresssing (APIPA)
What is Classless Interdomain Routing (CIDR)
The use of IP addresses without requiring the default subnet mask
what is Classful addressing
The use of IP addresses with their default subnet masks
With CIDR if the IP address is 172.31.210.10 and the subnet mask is 255.255.255.0 what is the host ID?
.10
What is the format for CIDR notation
A.B.C.D/n where n is the number of 1 bits in the subnet mask
Express 172.31.210.10 with a subnet mask of 255.255.255.0 as a CIDR notation
172.31.210.10/24
The network ID is 24 bits, leaving 8 bits for the host ID
What does a broadcast domain define
which devices must receive a packet that is broadcast by another device inside the domain
TCP/IP communication relies heavily on broadcast packets, specifically which two protocols?
DHCP and ARP which both use broadcasts to perform their tasks
What is subnetting
What are the reasons to subnet
A process that reallocates bits from an IP address’s host portion to the network portion, creating multiple smaller address spaces
What is the process for subnetting
What is supernetting