Difference between revisions of "IS-IS IPv6 Cisco IOS"

From Teknologisk videncenter
Jump to: navigation, search
m (New page: For generel IS-IS and IS-IS for Ipv4 see IS-IS =Configuring IPv6 IS-IS= 500px|left|float <source lang=cli> hostname R1 ! router isis address-family ipv6 redistr...)
 
m (Configuring IPv6 IS-IS)
Line 1: Line 1:
 
For generel IS-IS and IS-IS for Ipv4 see [[IS-IS]]
 
For generel IS-IS and IS-IS for Ipv4 see [[IS-IS]]
 
=Configuring IPv6 IS-IS=
 
=Configuring IPv6 IS-IS=
[[IS-IS_IPv6_1.PNG|500px|left|float]]
+
==Example==
 +
[[Image:IS-IS_IPv6_1.PNG|600px|left|float]]
 
<source lang=cli>
 
<source lang=cli>
 
hostname R1
 
hostname R1
Line 15: Line 16:
 
  ipv6 router isis  
 
  ipv6 router isis  
 
  isis circuit-type level-2-only
 
  isis circuit-type level-2-only
 +
</source>
 +
==IPv6 IS-IS through IPv4 only islands==
 +
Because IS-IS uses [[CLNP]] and not [[IPv6]] a standard [[IPv6-over-IPv4-Tunnel]]can't be used. A [[GRE]] tunnel through IPv4 is necessary.
 +
<source lang=cli>
 +
router isis
 +
net 49.0001.1921.6801.0001.00
 +
!
 +
interface tunnel0
 +
ipv6 address 2001:410:ffff:1::1/64
 +
tunnel source ethernet0
 +
tunnel destination 132.214.1.3
 +
tunnel mode gre ipv6
 +
ipv6 router isis
 
</source>
 
</source>
 
{{source cli}}
 
{{source cli}}
 
[[Category:IPv6]]
 
[[Category:IPv6]]

Revision as of 06:16, 7 June 2011

For generel IS-IS and IS-IS for Ipv4 see IS-IS

Configuring IPv6 IS-IS

Example

float
hostname R1
!
router isis
 address-family ipv6
  redistribute static
 exit-address-family
 net 49.0001.1921.6801.0001.00
!
interface fastethernet0/0
 address 2001:410:ffff:1::1/64
 ipv6 router isis 
 isis circuit-type level-2-only

IPv6 IS-IS through IPv4 only islands

Because IS-IS uses CLNP and not IPv6 a standard IPv6-over-IPv4-Tunnelcan't be used. A GRE tunnel through IPv4 is necessary.

router isis
 net 49.0001.1921.6801.0001.00
!
interface tunnel0
 ipv6 address 2001:410:ffff:1::1/64
 tunnel source ethernet0
 tunnel destination 132.214.1.3
 tunnel mode gre ipv6
 ipv6 router isis