Änderungen

Zur Navigation springen Zur Suche springen
921 Bytes hinzugefügt ,  23:16, 25. Sep. 2006
erstmal hingerotzt
===Warum===
Damit alle DSLer einen zusaetzlichen Nachbarn bekommen, wird
ein VPN Router im Internet (=M18) aufgestellt. Strecken ueber viele
Hops werden dann durch den Tunnel geleitet

===Wie===
Die Software der Wahl ist [http://vtun.sourceforge.net/ vtun].

===Konfiguration===
*Server in der M18 = Linksys
**Installation mit: <tt>ipkg update; ipkg install vtund</tt>
**Aufruf mit: <tt>vtund -s -f /etc/vtund.conf</tt>
**KonfigDatei <tt>/etc/vtund.conf:</tt>
<pre>
vpn {
passwd bla;
type tun;
proto udp;
compress no;
encrypt no;
keepalive yes;
multi yes;
stat no;
up {
ifconfig "%% 104.63.254.1 pointopoint 104.63.254.41 mtu 1450";
};
}
</pre>
*Klient = jeder DSLer
**Aufruf mit: <tt>vtund -f /etc/vtund.conf vpn 141.54.160.25</tt>
**KonfigDatei <tt>/etc/vtund.conf:</tt>
<pre>
vpn {
passwd bla;
device tun1;
persist yes;
up {
ifconfig "%% 104.63.254.41 pointopoint 104.63.254.1 mtu 1450";
};
}
</pre>

Navigationsmenü