Configuring IP Tunnel Interfaces
Configuring IPv6-over-IPv4 Tunnels
If you have a Tunnel PIC installed in your M Series or T Series router, you can configure IPv6-over-IPv4 tunnels. To define a tunnel, you configure a unicast tunnel across an existing IPv4 network infrastructure. IPv6/IPv4 packets are encapsulated in IPv4 headers and sent across the IPv4 infrastructure through the configured tunnel. You manually configure configured tunnels on each end point.
On SRX Series Firewalls, Generic Routing Encapsulation (GRE) and IP-IP tunnels use internal interfaces, gr-0/0/0 and ip-0/0/0, respectively. The Junos OS creates these interfaces at system bootup; they are not associated with a physical interface.
IPv6-over-IPv4 tunnels are defined in RFC 2893, Transition Mechanisms for IPv6 Hosts and Routers. For information about configuring a unicast tunnel, see Configuring Unicast Tunnels. For an IPv6-over-IPv4 tunnel configuration example, see Tunnel Services Overview.
See Also
Example: Configuring an IPv6-over-IPv4 Tunnel
Configure a tunnel on both sides of the connection.
Configuration on Router 1
[edit] interfaces { gr-1/0/0 { unit 0 { tunnel { source 10.19.2.1; destination 10.19.3.1; } family inet6 { address 2001:DB8::1:1/126; } } } }
Configuration on Router 2
[edit] interfaces { gr-1/0/0 { unit 0 { tunnel { source 10.19.3.1; destination 10.19.2.1; } family inet6 { address 2001:DB8::2:1/126; } } } }