IPV6 » Historique » Version 11
pizzacoca, 29/06/2019 07:57
1 | 1 | florian | # IPV6 |
---|---|---|---|
2 | |||
3 | > source : Objectif IPv6 sur https://www.fun-mooc.fr |
||
4 | |||
5 | |||
6 | 6 | pizzacoca | ## Références |
7 | 4 | pizzacoca | [LISP Locator/Identifier Separation Protocol (**rfc7215** pour les intimes)](https://tools.ietf.org/html/rfc7215) |
8 | |||
9 | 6 | pizzacoca | ## La notation IPv6 |
10 | 4 | pizzacoca | |
11 | * Ce qui la décrit [rfc4291](https://tools.ietf.org/html/rfc4291) |
||
12 | * Les recommandations d'utilisation [rfc5952](https://tools.ietf.org/html/rfc5952) |
||
13 | * Traduction IPv6 > IPv4 [rfc6052](https://tools.ietf.org/html/rfc6052) |
||
14 | * Le multicast [rfc7346](https://tools.ietf.org/html/rfc7346) |
||
15 | 5 | pizzacoca | * Des recommandations de numérotation [rfc8064](https://tools.ietf.org/html/rfc8064) |
16 | 4 | pizzacoca | |
17 | 11 | pizzacoca | Des liens : |
18 | > https://docs.oracle.com/cd/E19957-01/820-2982/ipv6-overview-10/ |
||
19 | |||
20 | 6 | pizzacoca | ## Oui mais en bref |
21 | 1 | florian | |
22 | 8 | pizzacoca | * IPv6 = 128bits répartis en 8 octets de 16 bits. |
23 | * écriture hexadecimale |
||
24 | 1 | florian | |
25 | 10 | pizzacoca | |Ecriture hexadécimal|Ecriture binaire|Base 10| |
26 | |----|----|----| |
||
27 | |0|0000|0| |
||
28 | |1|0001|1| |
||
29 | |2|0010|2| |
||
30 | |3|0011|3| |
||
31 | |4|0100|4| |
||
32 | |5|0101|5| |
||
33 | |6|0110|6| |
||
34 | |7|0111|7| |
||
35 | |8|1000|8| |
||
36 | |9|1001|9| |
||
37 | |a|1010|10| |
||
38 | |b|1011|11| |
||
39 | |c|1100|12| |
||
40 | |d|1101|13| |
||
41 | |e|1110|14| |
||
42 | |f|1111|15| |
||
43 | 7 | pizzacoca | |
44 | 8 | pizzacoca | exemple : |
45 | 1 | florian | |
46 | 8 | pizzacoca | |Ecriture hexadécimal|Ecriture binaire| |
47 | |----|----| |
||
48 | |1234|0001 0010 0011 0100| |
||
49 | |cdef|1100 1101 1110 1111| |
||
50 | |5678|0101 0110 0111 1000| |
||
51 | |89ab|1000 1001 1010 1011| |
||
52 | |1234|0001 0010 0011 0100| |
||
53 | |cdef|1100 1101 1110 1111| |
||
54 | |5678|0101 0110 0111 1000| |
||
55 | |89ab|1000 1001 1010 1011| |
||
56 | |||
57 | |||
58 | |||
59 | 6 | pizzacoca | Pour faire des adresses courtes on écrits pas les bits de poids fort égaux à 0 |
60 | 2001:**0**db8:5600:**00**b0:**0000**:**0000**:**0000**:**00**10 |
||
61 | 2001:db8:5600:b0::::10 |
||
62 | 7 | pizzacoca | Puis on enleve les octets nuls (possible une seule fois par adresse !) |
63 | 2001:db8:5600:b0:: |
||
64 | |||
65 | 1 | florian | **Adressage** |
66 | 7 | pizzacoca | * Non spécifique (à ne pas utiliser) 0:0:0:0:0:0:0:0 ou ::/128 |
67 | * Loopback 0:0:0:0:0:0:0:1 ou ::1/128 > Correspond à 127.0.0.1 |
||
68 | 8 | pizzacoca | * |
69 | 1 | florian | |
70 | 6 | pizzacoca | ## Identification et Localisation |
71 | |||
72 | > Le masque, comme en IPv4, s'écrit pareil : on indique le nombre de bits commun aux machines contenues |
||
73 | |||
74 | **Exemple :** |
||
75 | **2001:db8**:5600:b0::/32 > le masque est composé des 32 premiers bits |
||
76 | Description |
||
77 | |||
78 | |**16bits**|**32bits**|48bits|54bits|70bits|86bits|102bits|128bits| |
||
79 | |-----|-----|-----|-----|-----|-----|-----|-----| |
||
80 | |**octet 1**|**octet 2**|octet 3|octet 4|octet 5|octet 6|octet 7|octet 8| |
||
81 | |**2001**|**0db8**|5600|00b0|0000|0000|0000|0000| |
||
82 | |||
83 | |||
84 | |||
85 | |||
86 | 9 | pizzacoca | > Des travaux sont en cours pour la séparation des fonctions d'identification et de localisation.RFC7215 |
87 | > https://www.bortzmeyer.org/separation-identificateur-localisateur.html |
||
88 | |||
89 | > **Nota** |
||
90 | > Dans le cas d'une fonction de localisation séparée et très représentative de la topologie n'y a-t-il pas un danger de perte d'anonymat et/ou de contrôle ? |