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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a VLSM?

A

Variable Length Subnet Mask;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What protocol helped change the IPv4 configuration from a manual process to an automatic process?

A

Dynamic Host Configuration Protocol (DHCP)

17
Q

What protocol makes sure your APIPA address isn’t not already assigned and currently in use?

A

Address Resolution Protocol (ARP)

18
Q

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)?

A

Network Address Translation (NAT) converts private IP addresses into public IP addresses

19
Q

Classful Subnetting

A

Very specific subnetting architecture that has not been used since 1993.

20
Q

What are the major parts needed to construct a subnet?

A

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.