FAQ : Connectivity (Tunnels and Subnets) : How do I configure my machine to setup the IPv6 in IPv4 tunnel to the SixXS PoP?How do I configure my machine to setup the IPv6 in IPv4 tunnel to the SixXS PoP?The easiest way is by using AICCU, though if one wants to configure it manually or because AICCU doesn't support your platform, then you can pick your Operating system from the following list. AICCU can configure static, heartbeat and AYIYA tunnels. The manual methods described below only apply to static proto-41 tunnels. AYIYA and heartbeat tunnels require AICCU. SolarisUsing configuration filesIn the file /etc/hostname6.ip.tun0 put:tsrc [Your IPv4 Endpoint] tdst [PoP IPv4 Endpoint] up \ addif [Your IPv6 Endpoint]/64 [PoP IPv6 Endpoint] nud preferred upNext configure a default IPv6 route:
route -p add -inet6 default [PoP IPv6 Endpoint]
The "route -p" command stores the results in /etc/inet/static_routes to make it permanent.
ManuallyTunnel setup# ifconfig ip.tun0 inet6 plumb tsrc [Your IPv4 Endpoint] tdst [PoP IPv4 Endpoint] up # ifconfig ip.tun0 inet6 addif [Your IPv6 Endpoint] [PoP IPv6 Endpoint] up Routing setup: # route add -inet6 default [PoP IPv6 Endpoint] Forwarding (if applicable): # ndd -set /dev/ip ip6_forwarding 1 More information can be found on Sun's IPv6 pages. |