RADVD: Unterschied zwischen den Versionen

Aus Freifunk Kiel
Zur Navigation springen Zur Suche springen
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 5: Zeile 5:
 
== Konfiguration ==
 
== Konfiguration ==
  
  /etc/sysctl.conf
+
/etc/sysctl.conf
 
   net.ipv6.conf.all.forwarding = 1
 
   net.ipv6.conf.all.forwarding = 1
  
  /etc/dhcp/dhcpd.conf
+
/etc/dhcp/dhcpd.conf
 
   interface br-freifunk
 
   interface br-freifunk
 
   {
 
   {
Zeile 15: Zeile 15:
 
     MaxRtrAdvInterval 200;
 
     MaxRtrAdvInterval 200;
 
    
 
    
     prefix fda1:384a:74de:4242::/64 {
+
     prefix ::/64 {
 
     };
 
     };
 
    
 
    

Aktuelle Version vom 24. März 2013, 15:59 Uhr

Installation

 apt-get install radvd

Konfiguration

/etc/sysctl.conf

 net.ipv6.conf.all.forwarding = 1

/etc/dhcp/dhcpd.conf

 interface br-freifunk
 {
   AdvSendAdvert on;
 
   MaxRtrAdvInterval 200;
 
   prefix ::/64 {
   };
 
   RDNSS fda1:384a:74de:4242::2 {
   };
 };