Vol 1 Part 4: IPv4 Addressing Flashcards
How many bits are in an IPv6 address?
128 bits, 8 hextets. Each hextet is 16 bits, meaning they are essentially 2 octets.
What is the private IP range for a class A network?
10.0.0.0-10.255.255.255
What is the private IP range for a class B network?
172.16.0.0-172.31.255.255
Private IP address space is determined by what guideline?
RFC 1918
Class A, Class B, and Class C networks are all examples of what kind of network?
Unicast
How can you derive the number of subnets using the CIDR?
Once you have found your interval between subnets (32, 64, 128 etc.) divide 256 by that interval. This gives you your total number of subnets.
What is the range for public IP addresses by network class (classful)? Give the range for A, B, and C class networks.
A- 0.0.0.0-126.255.255.255
B- 128.0.0.0-191.255.255.255
C- 192.0.0.0-223.255.255.255
A subset of public IP networks to each company instead of an entire public IP network is known as what?
Used Classless InterDomain Routing (CIDR)
Why do we Subnet?
To divide hosts of similar needs into sub networks, enabling them to operate on a more efficient network .
Where in the IP range is the Broadcast address?
The last IP address in the range
How many bits are in an IPv4 address?
32 bits, 4 octets, 8 bits per octet.
How many network bits does a Class A, Class B, and Class C have?
A- 8
B- 16
C- 24
What is the private IP range for a class C network?
192.168.0.0-192.168.255.0
What are the 3 class of networks?
A, B, C
How can you derive the subnet ID with a subnet mask?
Take the last number in the subnet mask and subtract it from 256. This gives you the interval between subnets in that octet. From here, divide up that octet into intervals starting with .0 until you find the range of your subnet. The first address in the range is your subnet ID.
Ex. /18 CIDR = 11111111.11111111.11000000.00000000
That binary mask converts to 255.255.192.0
256-192=64. Our subnet ranges are .0-.63, .64-.127 etc.