Benutzer:BenLue

Aus Wiki Freifunk-3Ländereck
Version vom 9. Mai 2015, 02:36 Uhr von BenLue (Diskussion | Beiträge)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

Meine eigene WIKI Testseite.

DiY Freifunk-3Ländereck

IPv6 Tunnel @Tunnelbroker.net mit OpenVZ

DiY Clonezilla SE - Installing DRBL in Ubuntu 12.04

S3Root Network

Pub. Hostname Int. Hostname Pub. IPv4 Pub. IPv6 Int. IPv4 Int. IPv6 OS Kommentar
gw01.s3root.net gw01.s3s 146.185.253.133 Debian Jessie (8.0)
gw02.s3root.net gw02.s3s 146.185.253.190 Debian Jessie (8.0)
gw03.s3root.net gw03.s3s 146.185.253.18 2001:470:25:428::2 Debian Jessie (8.0)
node01.s3root.net n01.s3n Debian Jessie (8.0)
node02.s3root.net n02.s3n 2001:bf7:20::10 Debian Jessie (8.0)
node03.s3root.net n03.s3n Debian Jessie (8.0)
node04.s3root.net n04.s3n Debian Jessie (8.0)

DiY Freifunk-3Ländereck Fastd

  • [/etc/network/interfaces]
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
 
# The loopback network interface
auto lo
iface lo inet loopback
 
# Freifunk-3Ländereck
auto br-ff3l
iface br-ff3l inet static
        address 10.119.255.240
        netmask 255.255.0.0
        bridge_ports none
 
iface br-ff3l inet6 static
        address fdc7:3c9d:b889:a272::1:0014
        netmask 48
 
# Batman Interface
# - Erstellt das virtuelle Inteface für das Batman-Modul und bindet dieses an die Netzwerkbrücke
 
allow-hotplug bat0
 
iface bat0 inet6 manual
        pre-up modprobe batman-adv
        post-up ip link set dev bat0 up
        post-up brctl addif br-ff3l bat0
        post-up batctl it 10000
        post-up start-stop-daemon -b --start --exec /usr/sbin/alfred -- -i br-ff3l -b bat0;
        post-up start-stop-daemon -b --start --exec /usr/sbin/batadv-vis -- -i bat0 -s;

DiY Freifunk-3Ländereck Fastd

  • [/etc/fastd/fastd.conf]
interface "mesh-vpn";
user "nobody";
mode tap;
method "salsa2012+gmac";
mtu 1426; # 1406 - ipv6 header - fastd header
secret "super_sexy_anti_nsa_key_pwd_by_a.m.";
 
log to syslog level debug;
#folgende Zeile sorgt dafuer das jeder Peer akzeptiet wird
on verify "true";
 
include peers from "/etc/fastd/peers/ff3l/";
 
on up "
  ip link set dev $INTERFACE address de:ad:be:ef:43:02
  ip link set dev $INTERFACE up
  ifup bat0
  batctl if add $INTERFACE
";