# /etc/radvd.conf # Set up for CouchNet by jimc, 2008-10-27 # Service on the internal LAN only, not the IPv6 tunnel. interface eth0 { # Do send routing advertisements. AdvSendAdvert on; # IgnoreIfMissing on; #if interface will come up after radvd starts # Time between advertisements in secs (original: 3..10) MinRtrAdvInterval 30; MaxRtrAdvInterval 100; #Defer to other sources of routes (optional) AdvDefaultPreference low; # Disable Mobile IPv6 support AdvHomeAgentFlag off; # Tell clients they should get an address using dhcp6 # in addition to the address obtained from radvd AdvManagedFlag on; # Hurricane Electric net block assigned to us prefix 2001:470:1f04:844::0/64 { # Defaults: AdvOnLink on; AdvAutonomous on; AdvRouterAddr off; }; # 6to4 prefix: first 3 0/16's are replaced by 2002:AABB:CCDD where the letters # are the IPv4 address (in hex) of the indicated interface. prefix 0:0:0:1234::/64 { Base6to4Interface eth0; }; };