1.7 Given a scenario, use appropriate IPv4 network addressing. Flashcards
1
Q
Private IP Address ranges
A
- This allows more public IP addresses
- Huge private IP address ranges
- Private IP addresses are not internet-routable
2
Q
What is APIPA?
A
- (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)
3
Q
What is RFC1918?
A
(Request for Comment) is a standard that defines the ranges of IP addresses that we use on our network.
4
Q
What is a loopback/localhost?
A
- 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).
5
Q
What is a VLSM?
A
Variable Length Subnet Mask;
6
Q
What is CIDR?
A
- (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.
7
Q
Explain IPv4 Address Class A.
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
8
Q
Explain IPv4 Address Class B.
A
- 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
9
Q
Explain IPv4 Address Class C.
A
- 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
10
Q
Explain IPv4 Address Class D.
A
- Also referred to as “multicast”
- Leading bits range from (224-239)
- all other parts are “not defined”
11
Q
Explain IPv4 Address Class E.
A
- “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.
12
Q
What is the subnet mask?
A
- Used by the local device to determine what subnet it’s on.
- It typically isn’t transmitted across the network.
13
Q
What is the default gateway?
A
- The router that allows you communicate outside of your local subnet.
- It must be an IP address on the local subnet.
14
Q
What is a VIP?
A
- Virtual IP Address not associated with a physical network adapter
- You might assign this to a virtual machine.
15
Q
True or False: 8 bits, 1 byte, and 1 octet all represent the same thing.
A
True: 8 bits = 1 byte = 1 octet for IPv4