IPV6 » Historique » Version 10
pizzacoca, 29/06/2019 07:54
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 | 6 | pizzacoca | ## Oui mais en bref |
18 | 1 | florian | |
19 | 8 | pizzacoca | * IPv6 = 128bits répartis en 8 octets de 16 bits. |
20 | * écriture hexadecimale |
||
21 | 1 | florian | |
22 | 10 | pizzacoca | |Ecriture hexadécimal|Ecriture binaire|Base 10| |
23 | |----|----|----| |
||
24 | |0|0000|0| |
||
25 | |1|0001|1| |
||
26 | |2|0010|2| |
||
27 | |3|0011|3| |
||
28 | |4|0100|4| |
||
29 | |5|0101|5| |
||
30 | |6|0110|6| |
||
31 | |7|0111|7| |
||
32 | |8|1000|8| |
||
33 | |9|1001|9| |
||
34 | |a|1010|10| |
||
35 | |b|1011|11| |
||
36 | |c|1100|12| |
||
37 | |d|1101|13| |
||
38 | |e|1110|14| |
||
39 | |f|1111|15| |
||
40 | 7 | pizzacoca | |
41 | 8 | pizzacoca | exemple : |
42 | 1 | florian | |
43 | 8 | pizzacoca | |Ecriture hexadécimal|Ecriture binaire| |
44 | |----|----| |
||
45 | |1234|0001 0010 0011 0100| |
||
46 | |cdef|1100 1101 1110 1111| |
||
47 | |5678|0101 0110 0111 1000| |
||
48 | |89ab|1000 1001 1010 1011| |
||
49 | |1234|0001 0010 0011 0100| |
||
50 | |cdef|1100 1101 1110 1111| |
||
51 | |5678|0101 0110 0111 1000| |
||
52 | |89ab|1000 1001 1010 1011| |
||
53 | |||
54 | |||
55 | |||
56 | 6 | pizzacoca | Pour faire des adresses courtes on écrits pas les bits de poids fort égaux à 0 |
57 | 2001:**0**db8:5600:**00**b0:**0000**:**0000**:**0000**:**00**10 |
||
58 | 2001:db8:5600:b0::::10 |
||
59 | 7 | pizzacoca | Puis on enleve les octets nuls (possible une seule fois par adresse !) |
60 | 2001:db8:5600:b0:: |
||
61 | |||
62 | 1 | florian | **Adressage** |
63 | 7 | pizzacoca | * Non spécifique (à ne pas utiliser) 0:0:0:0:0:0:0:0 ou ::/128 |
64 | * Loopback 0:0:0:0:0:0:0:1 ou ::1/128 > Correspond à 127.0.0.1 |
||
65 | 8 | pizzacoca | * |
66 | 1 | florian | |
67 | 6 | pizzacoca | ## Identification et Localisation |
68 | |||
69 | > Le masque, comme en IPv4, s'écrit pareil : on indique le nombre de bits commun aux machines contenues |
||
70 | |||
71 | **Exemple :** |
||
72 | **2001:db8**:5600:b0::/32 > le masque est composé des 32 premiers bits |
||
73 | Description |
||
74 | |||
75 | |**16bits**|**32bits**|48bits|54bits|70bits|86bits|102bits|128bits| |
||
76 | |-----|-----|-----|-----|-----|-----|-----|-----| |
||
77 | |**octet 1**|**octet 2**|octet 3|octet 4|octet 5|octet 6|octet 7|octet 8| |
||
78 | |**2001**|**0db8**|5600|00b0|0000|0000|0000|0000| |
||
79 | |||
80 | |||
81 | |||
82 | |||
83 | 9 | pizzacoca | > Des travaux sont en cours pour la séparation des fonctions d'identification et de localisation.RFC7215 |
84 | > https://www.bortzmeyer.org/separation-identificateur-localisateur.html |
||
85 | |||
86 | > **Nota** |
||
87 | > 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 ? |