0% found this document useful (0 votes)
151 views

Taller 2 Ipv6

This document discusses rules for simplifying IPv6 addresses: Rule 1 allows removing leading zeros in each group of four hexadecimal digits (hextet). Rule 2 replaces the longest continuous block of all-zero hextets with "::". Combining the rules removes the most zeros possible from an IPv6 address. Examples demonstrate applying the rules to sample addresses.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
151 views

Taller 2 Ipv6

This document discusses rules for simplifying IPv6 addresses: Rule 1 allows removing leading zeros in each group of four hexadecimal digits (hextet). Rule 2 replaces the longest continuous block of all-zero hextets with "::". Combining the rules removes the most zeros possible from an IPv6 address. Examples demonstrate applying the rules to sample addresses.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

Practica 2

[email protected]

Participante:
Cristian Camilo Velez

Universidad Nacional Abierta y a Distancia UNAD


Ingeniería de Sistemas
2019
To make IPv6 addresses a little less imposing, two rules were developed to
make them easier to work with. Rule 1: Omission of the Leading 0s, and Rule 2:
Omission of the all-0 Hextets.

Rule 1: Omission of the Leading 0s


Rule 1 allows you to remove all the leading 0s in each individual hextet.

Sample 1 Unspecified address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0000
Leading 0’s removed: 0: 0: 0: 0: 0: 0: 0: 0
or
0:0:0:0:0:0:0:0

Sample 2 - Loopback Address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0001
Leading 0’s removed: 0: 0: 0: 0: 0: 0: 0: 1
or
0:0:0:0:0:0:0:1

Sample 3 – Global Unicast Address


Preferred Format: 2000:0000:0000:0000:0000:0000:0000:0001
Leading 0’s removed: 2000: 0: 0: 0: 0: 0: 0: 1
or
2000:0:0:0:0:0:0:1

Sample 4 – Global Unicast Address


Preferred Format: 2001:00FE:ACAD:2013:0000:0000:00AA:0271
Leading 0’s removed: 2001: FE:ACAD:2013: 0: 0: AA: 271
or
2001: FE:ACAD:2013:0:0:AA:271

Sample 5 – Unique local Unicast Address


Preferred Format: FC80:0000:0000:ACAD:0000:0000:0000:0001
Leading 0’s removed: FC80: 0: 0:ACAD: 0: 0: 0: 1
or
FC80:0:0:ACAD:0:0:0:1

Sample 6 – Link-local Address


Preferred Format: FE80:ACAD:0000:0197:0000:0000:0000:FF01
Leading 0’s removed: FE80:ACAD: 0: 197: 0: 0: 0:FF01
or
FE80:ACAD:0:197:0:0:0:FF01
Sample 7 – Multicast Address
Preferred Format: FF00:0000:0000:ACAD:0000:0000:FE00:0721
Leading 0’s removed: FF00: 0: 0:ACAD: 0: 0:FE00: 721
or
4 FF00:0:0:ACAD:0:0:FE00:721
Rule 1: Omission of the Leading 0s Problems

Using Rule 1 reduce the IPv6 addresses to their shortened form.

1. 0000:0000:0000:0000:0000:0000:0000:0000

0:0:0:0:0:0:0:0

2. 0000:0000:0000:0000:0000:0000:0000:0001
0:0:0:0:0:0:0:1

3. 2000:0000:0000:0000:0000:ABCD:0000:0025
2000:0:0:0:0:ABCD:0:25

4. 3F00:0090:0000:0000:0000:0098:0000:0001
3F00:90:0:0:0:98:0:1

5. 2001:3756:0005:0000:ACAD:0000:0000:0025
201:3756:5:0:ACAD:0:0:25

6. 3FFF:FF00:0000:0000:ACAD:0000:0000:0127
3FFF:FF00::0:ACAD:0:0:127

7. 2001:0000:0000:ABCD:FFFF:0000:0000:0001
2001:0:0:ABCD:FFFF:0:0:1

8. 3ABC:0001:ACAD:0000:0000:1234:0000:0005
3ABC:1:ACAD:0:0:1234:0:5

5
9. FC00:0000:0000:0000:3E00:1275:0000:0034
FC00:0:0:0:3E00:1275:0:34

10. FE95:FC6C:C540:0000:0000:0000:0000:9800
FE95:FC6C:C540:0:0:0:9800

11. FF00:ACAD:0000:0000:1234:0000:0000:0001
FF00:ACAD:0:0:1234:0:0:1

6
Rule 2: Omission of the All-0 Hextets

Rule 2 uses a double colon :: to represent a single contiguous set of all zero hextexts. It can
only be used once in any IPv6 address.

Sample 1 Unspecified address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0000
Contiguous 0’s removed: :: ::

Sample 2 - Loopback Address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0001
Contiguous 0’s removed: ::1 ::0001

Sample 3 – Global Unicast Address


Preferred Format: 2000:0000:0000:0000:0000:0000:0000:0001
Contiguous 0’s removed: 2000: 0001
or
2000::0001

Sample 4 – Global Unicast Address


Preferred Format: 2001:00FE:ACAD:2013:0000:0000:00AA:0271
Contiguous 0’s removed: 2001:00FE:ACAD:2013: :00AA:0271
or
2001:00FE:ACAD:2013::AA:0271

Sample 5 – Unique local Unicast Address


Preferred Format: FC80:0000:0000:ACAD:0000:0000:0000:0001
Contiguous 0’s removed: FC80:0000:0000:ACAD: 0001
or
FC80:0:0:ACAD::1

Sample 6 – Link-local Address


Preferred Format: FE80:ACAD:0000:0197:0000:0000:0000:FF01
Contiguous 0’s removed: FE80:ACAD:0000:0197: :FF01
or
FE80:ACAD:0:197::FF01

Sample 7 – Multicast Address


Preferred Format: FF00:0000:0000:ACAD:0000:0000:FE00:0721
Contiguous 0’s removed: FF00: :ACAD:0000:0000:FE00:0721 (Option #1)
FF00:0000:0000:ACAD: :FE00:0721 (Option #2)
or
FF00::ACAD:0000:0000:FE00:0721 (Option #1)
FF00:0:0:ACAD::FE00:0721 (Option #2)

7
Rule 2: Omission of the All-0 Hextets Problems

Using Rule 2 reduce the IPv6 addresses to their shortened form.

1. 0000:0000:0000:0000:0000:0000:0000:0000

0:0:0:0:0:0:0:0

2. 0000:0000:0000:0000:0000:0000:0000:0001
0:0:0:0:0:0:0:1

3. 2000:0000:0000:0000:0000:ABCD:0000:0025
2000:0:0:0:ABCD:0:25

4. 3F00:0090:0000:0000:0000:0098:0000:0001
3F00:90:0:0:0:98:0:1

5. 2001:3756:0005:0000:ACAD:0000:0000:0025
2001:3756:5:0:ACAD:0:0:25

6. 3FFF:FF00:0000:0000:ACAD:0025:0000:0127
3FFF:FF00:0:0:ACAD:25:0:127

7. 2001:ACAD:0000:ABCD:FFFF:0000:0000:0001
2001:ACAD:0:ABCD:FFFF:0:0:1

8. 3ABC:0001:ACAD:0000:0000:1234:0000:0005
3ABC:1:ACAD:0:0:1234:0:5

8
9. FC00:0000:0000:0000:3E00:1275:0000:0034
FC00:0:0:0:3E00:1275:0:34

10. FE95:FC6C:C540:0000:0000:0000:0000:9800
FE95:FC6C:C540:0:0:0:0:9800

11. FF00:ACAD:0000:0000:1234:0000:0000:0001
FF00:ACAD:0:0:1234:0:0:1

9
Combining Rule 1 and Rule 2

To reduce the size of IPv6 address even more you can combine Rule 1 with Rule 2.

Sample 1 Unspecified address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0000
Combined reduction: :: ::

Sample 2 - Loopback Address


Preferred Format: 0000:0000:0000:0000:0000:0000:0000:0001
Combined reduction: ::1

Sample 3 – Global Unicast Address


Preferred Format: 2000:0000:0000:0000:0000:0000:0000:0001
Combined reduction: 2000: 1
or
2000::1

Sample 4 – Global Unicast Address


Preferred Format: 2001:00FE:ACAD:2013:0000:0000:00AA:0271
Combined reduction: 2001: FE:ACAD:2013: : AA: 271
or
2001:FE:ACAD:2013::AA:271

Sample 5 – Unique local Unicast Address


Preferred Format: FC80:0000:0000:ACAD:0000:0000:0000:0001
Combined reduction: FC80: 0: 0:ACAD: : 1
or
FC80:0:0:ACAD::1

Sample 6 – Link-local Address


Preferred Format: FE80:ACAD:0000:0197:0000:0000:0000:FF01
Combined reduction: FE80:ACAD:0 : 197: :FF01
or
FE80:ACAD:0:197::FF01

Sample 7 – Multicast Address


Preferred Format: FF00:0000:0000:ACAD:0000:0000:FE00:0721
Combined reduction: FF00: :ACAD: 0: 0:FE00: 721 (Option #1)
FF00: 0: 0:ACAD: :FE00: 721 (Option #2)
or
FF00::ACAD:0:0:FE00:721 (Option #1)
FF00:0:0:ACAD::FE00:721 (Option #2)
0:0000:0000/64 10th subnet
2001:ACAD:1234:000A:0000:0000:0000:0000/64 11th subnet Each subnet
2001:ACAD:1234:000B:0000:0000:0000:0000/64 12th subnet contains over
18 quintillion
1
addresses. 0
A Medium En

11

You might also like