lunes, 22 de septiembre de 2014

ISIS IPV6 Cisco IOS-XR



En el anterior artículo configuramos ISIS para IPv6 sobre routers o switches con IOS, en este artículo se abordará la configuración de ISIS para IPv6 con IOS-XR.
Configurar ISIS para IPv6 es bastante parecido a hacerlo en IPv4, simplemente se necesitan dos pasos.
1 – Habilitar el address family de IPv6 dentro del proceso de ISIS.
2 – Habilitar el address family de IPv6 dentro de la interfaz, y a su vez esta dentro de ISIS.
Usando el mismo ejemplo que hemos usado para IPv6 en IOS tenemos la siguiente topología:



Y la configuración de R1:



RP/0/0/CPU0:R1#show run        
Fri Sep 12 20:03:51.738 SGT
Building configuration...
!! IOS XR Configuration 0.0.0
!
hostname R1
logging console debugging
!
interface GigabitEthernet0/0/0/2
 mtu 1514
 ipv4 address 192.168.15.1 255.255.255.0
 ipv6 address 5000:192:168:15::1/64
!router isis 1
 net 49.0001.0000.0000.1111.00
 address-family ipv4 unicast
  metric-style wide
 !
 address-family ipv6 unicast
  single-topology
 !
 interface GigabitEthernet0/0/0/2
  address-family ipv4 unicast
  !
  address-family ipv6 unicast
end

Si has estado atento a la config te habrás percatado del detallito de single-topology, pero eso es algo que abordaremos en el próximo artículo.

Si miramos la tabla de rutas podemos ver que tenemos la red que hay entre R6 y R5.



RP/0/0/CPU0:R1#show route ipv6
Fri Sep 12 20:10:08.016 SGT

Codes: C - connected, S - static, R - RIP, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - ISIS, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, su - IS-IS summary null, * - candidate default
       U - per-user static route, o - ODR, L - local, G  - DAGR
       A - access/subscriber, (!) - FRR Backup path

Gateway of last resort is not set

C    5000:192:168:15::/64 is directly connected,
      00:12:37, GigabitEthernet0/0/0/2
L    5000:192:168:15::1/128 is directly connected,
      00:12:37, GigabitEthernet0/0/0/2
i L2 5000:192:168:56::/64
      [115/20] via fe80::a8bb:ccff:fe00:6900, 00:06:51, GigabitEthernet0/0/0/2

Si le hacemos un ping podemos ver que R6 es completamente accesible.


RP/0/0/CPU0:R1#pin 5000:192:168:56::6
Fri Sep 12 20:11:04.539 SGT
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 5000:192:168:56::6, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 3/15/42 ms

Al igual que en el artículo anterior, para comprobar si las adyacencias de ISIS también so a nivel de IPv6 lo podemos hacer con el show isis neighbor detail.

RP/0/0/CPU0:R1#show isis neighbors detail
Fri Sep 12 20:09:50.492 SGT

IS-IS 1 neighbors:
System Id      Interface        SNPA           State Holdtime Type IETF-NSF
R5             Gi0/0/0/2        aabb.cc00.6900 Up    8        L2   Capable
  Area Address(es): 49.0005
  IPv4 Address(es): 192.168.15.5*
  IPv6 Address(es): fe80::a8bb:ccff:fe00:6900*
  Topologies: 'IPv4 Unicast' 'IPv6 Unicast'
  Uptime: 00:06:37

Total neighbor count: 1


No hay comentarios:

Publicar un comentario