Difference between revisions of "IPv6"
Jump to navigation
Jump to search
m (New page: == IPv6 under Linux == ===Links=== * [http://www.pps.jussieu.fr/~jch/software/ipv6-connectivity.html Getting IPv6 connectivity under Linux] * [http://people.debian.org/~csmall/ipv6/ the De...) |
m |
||
Line 5: | Line 5: | ||
* [http://www.bieringer.de/linux/IPv6/ the work by Peter Bieringer] |
* [http://www.bieringer.de/linux/IPv6/ the work by Peter Bieringer] |
||
* [http://madduck.net/blog/2008.04.02:adding-proper-ipv6-to-my-home-network/ a call by Madduck] |
* [http://madduck.net/blog/2008.04.02:adding-proper-ipv6-to-my-home-network/ a call by Madduck] |
||
+ | ====Gateway6 Client==== |
||
+ | Download it at [http://go6.net/4105/download.asp go6.net] |
||
+ | tar xzf gw6c-5_1-RELEASE-src.tar.gz |
||
+ | cd tspc-advanced |
||
+ | make target=linux |
||
+ | sudo make target=linux installdir=/usr/local/gw6c install |
||
+ | |||
+ | cd /usr/local/gw6c/bin |
||
+ | vi gw6c.conf |
||
+ | server=anon.freenet6.net |
||
+ | ./gw6c |
||
+ | |||
+ | For being registered and propagating a IPv6 prefix on the LAN: |
||
+ | vi gw6c.conf |
||
+ | userid=.... |
||
+ | passwd=.... |
||
+ | server=broker.freenet6.net |
||
+ | auth_method=any |
||
+ | host_type=router |
||
+ | prefixlen=64 |
||
+ | if_prefix=eth0 |
||
+ | dns_server=.... |
||
+ | ====Tests==== |
||
+ | * http://kame.net |
||
+ | * http://ripe.net |
Revision as of 21:33, 2 April 2008
IPv6 under Linux
Links
- Getting IPv6 connectivity under Linux
- the Debian IPv6 project page
- the work by Peter Bieringer
- a call by Madduck
Gateway6 Client
Download it at go6.net
tar xzf gw6c-5_1-RELEASE-src.tar.gz cd tspc-advanced make target=linux sudo make target=linux installdir=/usr/local/gw6c install
cd /usr/local/gw6c/bin vi gw6c.conf server=anon.freenet6.net ./gw6c
For being registered and propagating a IPv6 prefix on the LAN:
vi gw6c.conf userid=.... passwd=.... server=broker.freenet6.net auth_method=any host_type=router prefixlen=64 if_prefix=eth0 dns_server=....