Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
linux:ipv6 [2009/05/25 00:35]
127.0.0.1 external edit
linux:ipv6 [2012/10/27 13:13] (current)
a [Basic configuration (Debian/ubuntu)]
Line 5: Line 5:
 ===== IPv4-IPv6 Tunnels ===== ===== IPv4-IPv6 Tunnels =====
 **HE IPv6 Tunnel Broker http://tunnelbroker.net/** **HE IPv6 Tunnel Broker http://tunnelbroker.net/**
-<code |/etc/network/interfaces>+<code |/etc/network/interfaces>
 auto he6to4 auto he6to4
 iface he6to4 inet6 v4tunnel iface he6to4 inet6 v4tunnel
Line 19: Line 19:
 FIXME FIXME
  
-===== Basic configuration ===== +===== Basic configuration (Debian/ubuntu) ===== 
-<code |/etc/network/interfaces>+<code |/etc/network/interfaces>
 auto ethX auto ethX
 iface ethX inet6 static iface ethX inet6 static
Line 27: Line 27:
 </code> </code>
  
-<code |/etc/sysctl.conf>+<code |/etc/sysctl.conf>
 net.ipv6.conf.default.forwarding=1 net.ipv6.conf.default.forwarding=1
 </code> </code>
  
 +===== Basic configuration (RHEL/Fedora/CentOS) =====
 +<code |f /etc/sysconfig/network>
 +NETWORKING=yes
 +NETWORKING_IPV6=yes
 +HOSTNAME=linux
 +</code>
 +
 +<code |f /etc/sysconfig/network-scripts/ifcfg-eth0>
 +IPV6INIT=yes
 +IPV6ADDR=<IPv6-IP-Address>
 +IPV6_DEFAULTGW=<IPv6-IP-Gateway-Address>
 +</code>
 +
 +Save and close the file. Restart networking:
 +   # service network restart
  
-<code |/etc/radvd.conf>+===== Router adv ===== 
 +**Router side** 
 +<code | /etc/radvd.conf>
 interface eth0 interface eth0
 { {
-   AdvSendAdvert on; +        AdvSendAdvert on; 
-   prefix xxxx:yyyy:uuuu:::/64 +        IgnoreIfMissing on; 
-   +        MinRtrAdvInterval 3; 
-   };+        MaxRtrAdvInterval 30; 
 +        AdvDefaultPreference low; 
 +        AdvHomeAgentFlag off; 
 +        AdvManagedFlag  on; 
 +#       AdvOtherConfigFlag on; 
 + 
 +        prefix 2001:15c0:1000:1036::/64 
 +        
 +                AdvOnLink on; 
 +                AdvAutonomous off; 
 +                AdvRouterAddr off; 
 +        }; 
 +        RDNSS 2001:15c0:1000:1036::1 2001:15c0:ffff:f::12 
 +        { 
 +                AdvRDNSSPreference 8; 
 +                AdvRDNSSOpen off; 
 +        };
 }; };
-</code> 
  
  
 +</code>
  
 +===== Router dibbler dhcpv6 =====
 +**Router side**
 +<code | /etc/dibbler/server.conf>
  
 + log-level 1
 + log-mode short
 + preference 0
  
 + iface eth1 {
 + option dns-server 2001:15c0:ffff:f::12,2001:15c0:1000:1036::1
 + option domain net.lan
 + option time-zone  CET
 + option lifetime 500
 + t1 1800-2000
 + t2 2700-3000
 + prefered-lifetime 3600
 + valid-lifetime 7200
  
 + class {
 +   pool 2001:15c0:1000:1036::1/64
 + }
 +
 +}
 +</code>
linux/ipv6.1243204502.txt.gz · Last modified: 2009/10/15 18:57 (external edit)
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0 ipv6 ready