Lesson 4 - Chapter 3: Network Addressing With IPv6 Flashcards

1
Q

How many bits are IPv6 addresses?

A

128-bits (compared to 32-bits for IPv4)

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

Where IPv4 addresses are converted to decimal for humans to remember better, IPv6 is converted to what?

A

Hexadecimal

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

An IPv4 address has 4 segments. How many does an IPv6 have?

A

8

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

What’s the difference in how the decimal/hexadecimal numbers are separated in IPv4 and IPv6 addresses?

A

IPv4 = dots (periods)
IPv6 = colons

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

Are IPv6 addresses case-sensitive?

A

No

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

To shorten an IPv6 address, what do you do with the 0’s?

A

Leading zeros = omitted from a group(replaced with ::) or shrunk down to one 0

Examples
00CF = CF
0000 = 0

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

To shorten an IPv6 address, what can you do with all-zero groups 0000?

A

You can omit them and indicate them by placing 2 colons in their place

Example
2001:0000:0000:3210:0800:200C:00CF:1234
0000:0000:0000:0000:0000:0000:0000:0001/128

Becomes
2001::3210:800:200C:CF:1234
0:0:0:0:0:0:0:1 or ::1/128

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

What bits of an IPv6 address are for the host ID?

A

the last 64 bits

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

What is the Extended Unique Identifer-64-bit? (EUI-64)

A

the host ID that Linux and macOS build from the MAC address of the NIC

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

How does Windows generate the host ID of an IPv6 address? Does it ever change?

A

it generates a random value when a NIC is configured

(that number never changes)

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

What’s the abbreviated loopback address for IPv6?

A

0:0:0:0:0:0:0:1 or ::1/128

(entirely a host address, no network address)

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

Since IPv6 doesn’t have a subnet mask, what does it use that’s similar?

A

a prefix length

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

What’s a prefix length? What does it control?

A

controls how many address bits define the network (and the rest define the host address)

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

What’s the default prefix length?

A

64 bits written as /64

(so IPv6 128 bits is divided equally)

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

Name the 4 parts of an IPv6 address

A
  1. Global prefix
  2. Network prefix
  3. Subnet ID
  4. Interface ID
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Describe the 4 parts of an IPv6 address

A
  1. Global prefix (first 4 digits)
  2. Network prefix (first 16 digits + global prefix)
  3. Subnet ID (last 2 digits of Network prefix)
  4. Interface ID (17th-32nd digits)
17
Q

With IPv6, a single network card will have multiple….?

A

IP addresses

18
Q

What’s a link-local address?

A

the IPv6 address a computer gives itself when it first boots up (will always have this address, does not indicate a connection issue)

(similar to IPv4’s APIPA local address)

19
Q

The first 64 bits of a link-local IPv6 address are?

A

fe80::/10
(fe80:0000:0000:0000)

20
Q

The remaining 64 bits of an IPv6 address is the?

A

Interface ID (equivalent to IPv4 Host ID)

21
Q

Link-local addressing does all the local networking hard work so that you don’t need to mess with what 2 things?

A

static and DHCP addressing unless you have dedicated servers

22
Q

To use the Internet with IPv6, what does a system need?

A

a 2nd IPv6 address called a global unicast address (also called global address)

23
Q

What is a global unicast address also called?

A

global address (and it’s the 2nd IPv6 address needed to access the Internet)

24
Q

How do you get a global address?

A

Most common is to request it from the default gateway router (as long as it’s configured to give out global IPv6 addresses)

25
What is a router solicitation (RS) message? What does it look for?
it's a special packet sent out by a computer that was just plugged into a network to look for a router
26
What does a router do with a router solicitation (RS) message?
it responds with a router advertisement (RA)
27
What does a router advertisement (RA) do?
tells the computer that sent the RS its new network ID and subnet (together called the prefix) and DNS server if configured
28
What defines the "prefix" that a router sends out in a router advertisement (RA)?
it tells systems their network ID and subnet
29
What address does a router solicitation (RS) message use?
FF02::2
30
What computers read the address used for RS messages?
the only computers that read that address are computers running IPv6 in the network
31
The address that an RS message uses is called a..?
multicast address (not similar to a broadcast address, there's no broadcast in IPv6)
32
What happens when a computer's RS message is answered by the router and it gets its prefix?
it generates the rest of the address and ends up with a 128-bit public IPv6 address and a link-local address
33
Is this process the same in all 3 OS?
Yes
34
How is using a global address different from IPv4 addresses?
A global address sends you straight to the Internet, doesn't rely on the router translating from local address to a network one
35
What's a word of caution to keep in mind with computers that are running IPv6 and also have global addresses?
they can access your system unless you have a firewall (because data no longer needs to be routed through the router)
36
Instead of using a ___ ___ IPv6 addresses use a ___ ___ to indicate the divider between the network ID and host ID
instead of using a subnet mask, IPv6 addresses use a prefix length
37
Each host using IPv6 has a ___ ___ ___ that it generates itself
link-local address
38
To get on the Internet, each host uses what from the default gateway router?
the host uses a global unicast address from the default gateway router
39
What's the range of hexadecimal numbers?
0-9 A-F