Netzwerk: Unterschied zwischen den Versionen

Aus Shea Wiki
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
 
Keine Bearbeitungszusammenfassung
Zeile 3: Zeile 3:
== Links ==
== Links ==
* http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/
* http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/
* https://fedoraproject.org/wiki/Tools/NetworkManager/IPv6


== 6to4 Tunnel einrichten ==
== 6to4 Tunnel einrichten ==

Version vom 1. Januar 1970, 02:00 Uhr

Informationen zu IPv6

Links

6to4 Tunnel einrichten

ipv4=$(ifconfig ppp0|grep inet|cut -d: -f2|cut -d" " -f1)
ipv6=$(ipv6calc --in ipv4addr --out ipv6addr --action conv6to4 $ipv4)
ip -6 route flush dev tun6to4
ip link set dev tun6to4 down
ip tunnel del tun6to4
ip tunnel add tun6to4 mode sit ttl 64 remote any local $ipv4
ip link set dev tun6to4 up
ip -6 addr add ${ipv6}1/16 dev tun6to4
ip -6 route add 2000::/3 via ::192.88.99.1 dev tun6to4 metric 1
ip -6 route add ${ipv6%*:}f101::/64 dev eth0 metric 1
service radvd restart

KategorieWissen