Hay In A Needlestack
Gustavo Vieira's small place in the web, where he shares with the world the geeky bits of knowledge he sometimes finds.


Tue, 24 Jun 2008

IPv6 on Fedora (Redux)

A little improvement on my IPv6 setup. I discovered a handy configuration parameter for RADV that makes it unnecessary to update the configuration file in the rare occasion my IP address changes. The improved /etc/radvd.conf looks like this:

interface eth0
{
        AdvSendAdvert on;
        MinRtrAdvInterval 30;
        MaxRtrAdvInterval 100;
        prefix 0:0:0:1::/64
        {
                AdvOnLink on;
                AdvAutonomous on;
                AdvRouterAddr off;
                Base6to4Interface eth1;
        };

};

Posted at: 17:54 | Category: /fedora | permalink

Copyright © 2007 Gustavo M. D. Vieira