INTERNET PROTOCOL VERSION 6

Description

CCNP 301-101 ROUTE
joseph chiong
Mind Map by joseph chiong, updated more than 1 year ago
joseph chiong
Created by joseph chiong about 6 years ago
7
0

Resource summary

INTERNET PROTOCOL VERSION 6
  1. DESCRIPCION
    1. IPv6, usa: 128b (2'128)
      1. IPv6, formato: hexadecimal (2 caracteres = 1B)
        1. IPv6 no tiene Checksum como en IPv4
          1. IPv6 los routers intermedios no fragmentan
            1. IPv6 mejora el control de trafico
              1. IPv6 es mas simple y mas eficiente que IPv4
                1. IPv6, definido: RFC2460
                  1. 64b networks | 64b hosts
                    1. Una vez, ceros reemplazados por (::)
                      1. Los primeros ceros en un bloque (2B), son omitidos
                      2. IPv6, tipos direcciones: UNICAST, MULTICAST y ANYCAST
                        1. IPv6 tiene ICMPv6 ND(Neighbor Discovery), reemplaza a ARP
                          1. IPv6 routing: rutas estaticas, RIPng, EIGRP for IPv6, IS-IS for IPv6, MP-BGP4, OSPFv3
                          2. FORMATO IPv6
                            1. VERSION: 4b | 6
                              1. TRAFFIC CLASS: 8b | prioridad | usado QoS
                                1. FLOW LABEL: 20b | es un TAG | etiqueta flujos
                                  1. PAYLOAD LENGHT: 16b | longitud data
                                    1. NEXT HEADER: 8b | ID protocolo
                                      1. HOP LIMIT: 8b | TTL
                                        1. SOURCE ADDRESS: 128b | direccion origen
                                          1. DESTINATION ADDRESS: 128b | direccion destino
                                            1. EXTENSION HEADERS:
                                              1. HOP BY HOP | opcional cambio saltos
                                                1. DESTINATION | opcional cambio destino
                                                  1. ROUTING |
                                                    1. FRAGMENT | si solicita en MTU
                                                      1. AUTHENTICATION | Autenticacion y encapsulamiento del payload para seguridad (ESP)
                                                    2. DIRECCIONAMIENTO IPv6
                                                      1. UNICAST: host a host
                                                        1. MULTICAST: host a grupo host
                                                          1. ANYCAST: host a interfaces cercanas
                                                            1. GLOBAL UNICAST: (publicas) 2000...-3FFF...
                                                              1. SITE LOCAL: (privado) FEC0...
                                                                1. LINK LOCAL: entre equipos mismo segmento FE80...
                                                                  1. MULTICAST: FF...
                                                                    1. FF01::1 | Interface-local, todos nodos
                                                                      1. FF02::1 | Link-local, todos nodos
                                                                        1. FF01::2 | Interface-local, todos nodos
                                                                          1. FF02::2 | Link-local, todos nodos
                                                                            1. FF02::5 | todos routers OSPFv3
                                                                              1. FF02::6 | DR/BDR routers OSPFv3
                                                                                1. FF02::9 | todos routers RIPng
                                                                                2. MANUAL
                                                                                  1. AUTOMATICA
                                                                                    1. EUI-64
                                                                                      1. Toma la direccion MAC del host
                                                                                        1. La operacion esta en los 64b del host IPv6
                                                                                          1. Invertir el 7mo bit mas significativo de la MAC
                                                                                            1. Insertar FFFE en el medio de la MAC
                                                                                            2. DHCP
                                                                                              1. STATELESS AUTOCONFIGURATION (DHCP lite) SLAAC
                                                                                                1. Un router entrega la direccion red IPv6 a un host sin ser server DHCP( sin estado)
                                                                                                  1. El host usa RS
                                                                                                    1. El router responde con RA
                                                                                                      1. OPCION 1: SLAAC (intercambio mensajes RA-RS a traves de ICMPv6)
                                                                                                        1. OPCION2: SLAAC y DHCPv6 sin estado, la parte de host genera su direccion con el proceso EUI64
                                                                                                      2. ICMPv6 ND (Neighbor Discovery)
                                                                                                        1. NS (Neighbor Solicitation): Un host pregunta en ese link?
                                                                                                          1. NA (Neighbor Advertisement): Un host se anuncia asimismo en el link
                                                                                                            1. RS (Router Solicitation): Un router pregunta en ese link
                                                                                                              1. RA (Router Advertisement): Un router se anuncia asimismo en el link
                                                                                                            2. CONFIGURACION
                                                                                                              1. Habilitando IPv6
                                                                                                                1. R3(config)#ipv6 unicast-routing
                                                                                                                  1. R3(config-if)#ipv6 address 2003::3/64
                                                                                                                    1. R3(config-if)#ipv6 address 2003::3/64 eui-64
                                                                                                                      1. R3#sh ipv6 int f0/1
                                                                                                                        1. R3#sh ipv6 neighbors
                                                                                                                          1. Se puede tener 2 IPv6 globales en la misma interface
                                                                                                                            1. ipv6 neighbors reemplaza a tabla ARP IPv4
                                                                                                                            2. Enrutamiento Estatico IPv6
                                                                                                                              1. R3(config)#ipv6 route 2005::/64 2034::4
                                                                                                                                1. R3(config)#ipv6 route 2045::/64 2034::4
                                                                                                                                  1. R3(config)#ipv6 route ::/0 2034::4
                                                                                                                                    1. Se configura con la IPv6 del siguiente salto
                                                                                                                                    2. Dual Stack
                                                                                                                                      1. R3(config)#ipv6 unicast-routing
                                                                                                                                        1. R3(config-if)#ipv6 address 2003::3/64
                                                                                                                                          1. R3(config-if)#ip address 192.168.3.3 255.255.255.0
                                                                                                                                          2. Tunneling
                                                                                                                                            1. GRE
                                                                                                                                              1. R_GRE-03(config)#interface tunnel 0
                                                                                                                                                1. R_GRE-03(config-if)#ipv6 enable
                                                                                                                                                  1. R_GRE-03(config-if)#ipv6 address 2035::3/64
                                                                                                                                                    1. R_GRE-03(config-if)#tunnel source 192.168.34.3
                                                                                                                                                      1. R_GRE-03(config-if)#tunnel destination 192.168.45.5
                                                                                                                                                        1. R_GRE-05(config)#interface tunnel 0
                                                                                                                                                          1. R_GRE-05(config-if)#ipv6 enable
                                                                                                                                                            1. R_GRE-05(config-if)#ipv6 add 2035::5/64
                                                                                                                                                              1. R_GRE-05(config-if)#tunnel source 192.168.45.5
                                                                                                                                                                1. R_GRE-05(config-if)#tunnel destination 192.168.34.3
                                                                                                                                                                2. IPv6IP
                                                                                                                                                                  1. R_GRE-03(config-if)#tunnel mode ipv6ip
                                                                                                                                                                    1. R_GRE-05(config-if)#tunnel mode ipv6ip
                                                                                                                                                                      1. R_GRE-03(config-if)#do sh int tun0
                                                                                                                                                                    2. RIPng
                                                                                                                                                                      1. RD01(config)#ipv6 router rip CCNP
                                                                                                                                                                        1. RD01(config-if)#ipv6 rip CCNP enable
                                                                                                                                                                          1. RD01(config)#ipv6 unicast-routing
                                                                                                                                                                          2. EIGRP
                                                                                                                                                                            1. RD04(config)#ipv6 unicast-routing
                                                                                                                                                                              1. RD04(config)#ipv6 router eigrp 10
                                                                                                                                                                                1. RD04(config-rtr)#router-id 4.4.4.4
                                                                                                                                                                                  1. RD04(config-rtr)#no shut
                                                                                                                                                                                    1. RD04(config-if)#ipv6 eigrp 10
                                                                                                                                                                                  2. OPERACION IPv6
                                                                                                                                                                                    1. Interoperatividad IPV6 a IPv4
                                                                                                                                                                                      1. DUAL STACK
                                                                                                                                                                                        1. Corriendo ROUTING IPv4
                                                                                                                                                                                          1. Corriendo ROUTING IPv6
                                                                                                                                                                                          2. TUNNELING
                                                                                                                                                                                            1. MANUAL
                                                                                                                                                                                              1. GRE (Generic Routing Encapsulation): protocolo tunel, IP_ID47, capacidad muchos protocolos
                                                                                                                                                                                                1. IPv6IP: protocolo tunel, IP_ID41, capacidad solo trafico IPv6
                                                                                                                                                                                                2. AUTOMATICO
                                                                                                                                                                                                  1. 6to4 (IPv6 to IPv4): protocolo tunel, IP_ID41
                                                                                                                                                                                                    1. TEREDO: protocolo tunel, capacidad encapsula en UDP, pasa sobre firewalls, equipos NAT
                                                                                                                                                                                                      1. ISATAP: protocolo tunel, host to host
                                                                                                                                                                                                    2. TRADUCCION NAT
                                                                                                                                                                                                      1. NAT-PT
                                                                                                                                                                                                  Show full summary Hide full summary

                                                                                                                                                                                                  Similar

                                                                                                                                                                                                  CCNP 300-115 SWITCH VTP LAB
                                                                                                                                                                                                  Alexander Gomez
                                                                                                                                                                                                  CCNP 300-115 TOPIC SEGURIDAD
                                                                                                                                                                                                  Alexander Gomez
                                                                                                                                                                                                  CCNP 300-115 Topic 3, Infrastructure Services
                                                                                                                                                                                                  Alexander Gomez
                                                                                                                                                                                                  CCNP Route V6 Final Exam
                                                                                                                                                                                                  Annette Castillo
                                                                                                                                                                                                  CCNP CAP 1
                                                                                                                                                                                                  bruce flores
                                                                                                                                                                                                  Sources of Law
                                                                                                                                                                                                  cearak
                                                                                                                                                                                                  BIOLOGY B1 4
                                                                                                                                                                                                  x_clairey_x
                                                                                                                                                                                                  Physics: section 7 - radioactivity and particles
                                                                                                                                                                                                  James Howlett
                                                                                                                                                                                                  The Circulatory System
                                                                                                                                                                                                  Hamza Ahmed
                                                                                                                                                                                                  Dr Jekyll and Mr Hyde
                                                                                                                                                                                                  rachel allan