1.7 Given a scenario, use appropriate IPv4 network addressing. Flashcards
Private IP Address ranges
- This allows more public IP addresses
- Huge private IP address ranges
- Private IP addresses are not internet-routable
What is APIPA?
- (Automatic Private IP Addressing) this means that a link-local address can only communicate to other local devices (no forwarding by other routers)
- IETF has reserved 169.254.01 through 169.254.255.254 (first and last 256 addresses are reserved)
- Uses ARP to automatically assign (ensure address is not currently in use)
What is RFC1918?
(Request for Comment) is a standard that defines the ranges of IP addresses that we use on our network.
What is a loopback/localhost?
- It is an address to yourself
- It ranges from 127.0.0.1 through 127.255.255.254
- It is an easy way to self-reference (ping 127.0.0.1).
What is a VLSM?
Variable Length Subnet Mask;
What is CIDR?
- (Classless Inter-Domain Routing) created around 1993 and removed the restrictions created by classful subnet masks
- denoted by the “/”
- Some OSs are expecting decimal masks & some are expecting CIDR notation marks.
Explain IPv4 Address Class A.
- Leading bits range from (0-127)
- 8 Network bits
- 24 remaining bits
- 128 Networks available
- 16,777,214 Hosts per network
- 255.0.0.0 is default subnet mask
Explain IPv4 Address Class B.
- Leading bits range from (128-191)
- 16 Network bits
- 16 remaining bits
- 16,384 Networks available
- 65,534 Hosts per network
- 255.255.0.0 is default subnet mask
Explain IPv4 Address Class C.
- Leading bits range from (192-223)
- 24 Network bits
- 8 remaining bits
- 2,097,152 Networks available
- 254 Hosts per network
- 255.255.255.0 is default subnet mask
Explain IPv4 Address Class D.
- Also referred to as “multicast”
- Leading bits range from (224-239)
- all other parts are “not defined”
Explain IPv4 Address Class E.
- “Reserved Addresses” that have been set aside for future use or testing.
- Leading bits range from (240-255)
- 240.0.0.1 through 254.255.255.254.
What is the subnet mask?
- Used by the local device to determine what subnet it’s on.
- It typically isn’t transmitted across the network.
What is the default gateway?
- The router that allows you communicate outside of your local subnet.
- It must be an IP address on the local subnet.
What is a VIP?
- Virtual IP Address not associated with a physical network adapter
- You might assign this to a virtual machine.
True or False: 8 bits, 1 byte, and 1 octet all represent the same thing.
True: 8 bits = 1 byte = 1 octet for IPv4
What protocol helped change the IPv4 configuration from a manual process to an automatic process?
Dynamic Host Configuration Protocol (DHCP)
What protocol makes sure your APIPA address isn’t not already assigned and currently in use?
Address Resolution Protocol (ARP)
If your computer has been assigned a private IP address (that is not technically routable over the internet, then how are you able to watch this (Professor Messer video)?
Network Address Translation (NAT) converts private IP addresses into public IP addresses
Classful Subnetting
Very specific subnetting architecture that has not been used since 1993.
What are the major parts needed to construct a subnet?
1) Network address: the first IP address of a subnet (set all the host bits to 0)
2) First usable host address (typically one number higher than the network address)
3) Network broadcast address: the last IP address of a subnet (set all host bits to 1)
4) Last usable host address: one number lower than the broadcast address.