L2TP: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
 +
=Installation=
 +
apt-get install  xl2tpd ppp openswan
 +
=Openswan=
 +
cat /etc/ipsec.conf
 +
version 2.0
 +
config setup
 +
    nat_traversal=yes
 +
    virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12
 +
    oe=off
 +
    protostack=netkey
 +
conn l2tp
 +
    authby=secret
 +
    pfs=no
 +
    auto=add
 +
    type=transport
 +
    left=217.91.41.188
 +
    leftprotoport=17/1701
 +
    right=%any
 +
    rightprotoport=17/%any
 +
 +
 +
~                                                                                                               
 +
~                                                                                                               
 +
~                             
 +
 +
 +
 
Quellen:
 
Quellen:
 
*http://blog.riobard.com/2010/04/30/l2tp-over-ipsec-ubuntu
 
*http://blog.riobard.com/2010/04/30/l2tp-over-ipsec-ubuntu
 
*http://pleasefeedthegeek.wordpress.com/2012/04/21/l2tp-ubuntu-server-setup-for-ios-clients/
 
*http://pleasefeedthegeek.wordpress.com/2012/04/21/l2tp-ubuntu-server-setup-for-ios-clients/

Version vom 16. Oktober 2012, 09:29 Uhr

Installation

apt-get install  xl2tpd ppp openswan

Openswan

cat /etc/ipsec.conf
version 2.0
config setup
    nat_traversal=yes
    virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12
    oe=off
    protostack=netkey
conn l2tp
   authby=secret
   pfs=no
   auto=add
   type=transport
   left=217.91.41.188
   leftprotoport=17/1701
   right=%any
   rightprotoport=17/%any


~ ~ ~


Quellen: