I am looking to configure a few hosts with IPv6 on my network. The router (running CentOS 5) is configured with an Hurricane Electric (HE) tunnel which works fine on that host.
However, I would like to statically add a few additional hosts on the same LAN to have IPv6 through this tunnel. No, I don't want radvd or dhcpv6 to do the work for me in this case.
I already have IPv6 forwarding enabled in sysctl.conf. I am looking for help with the next steps (statically adding the routes).
Lets say the IP addresses are as follows:
Router: 2001:470:1b07:1::
Host1: 2001:470:1b07:2::
How would I go about making them see each other? Thanks in advance for the help.
Basically you need:
Now the IPv6 traffic from the PC will be sent to the router, which will send it to on tunnel. Return traffic from come from the tunnel to the router, which will then see that the destination is in the LAN /64 and it will send it to its LAN interface where the PC can receive it.
Thank you all very much for the help. All my troubles actually stemmed from a typo in my Network Configuration script for the interface. Put simply, I was over thinking this problem and doubting myself in this case.
When populated with IPV6INIT, IPV6ADDR and IPV6_DEFAULTGW (on both the router and other LAN machine) no further routes needed to be added. The static assignment/routes now work.