« L2tp » : différence entre les versions
De Wiki doc
(Page créée avec « Category:tunnelisation =iproute2= ==Serveur 1== '''Création du tunnel''' ip l2tp add tunnel tunnel_id 1000 peer_tunnel_id 2000 encap udp local 10.254.254.254 remote... ») |
(→Source) |
||
Ligne 23 : | Ligne 23 : | ||
'''Suppression du tunnel (avec sa session)''' | '''Suppression du tunnel (avec sa session)''' | ||
ip l2tp del tunnel tunnel_id 2000 | ip l2tp del tunnel tunnel_id 2000 | ||
= | =SourceS= | ||
* https://remote-lab.net/linux-l2tp-ethernet-pseudowires | * https://remote-lab.net/linux-l2tp-ethernet-pseudowires | ||
* https://www.kernel.org/doc/Documentation/networking/l2tp.txt |
Version du 9 septembre 2017 à 11:52
iproute2
Serveur 1
Création du tunnel
ip l2tp add tunnel tunnel_id 1000 peer_tunnel_id 2000 encap udp local 10.254.254.254 remote 10.254.254.253 udp_sport 6000 udp_dport 5000
Création de la session
ip l2tp add session tunnel_id 1000 session_id 3000 peer_session_id 4000
Afficher le tunnel
ip l2tp show tunnel
Afficher la session
ip l2tp show session
Suppression du tunnel (avec sa session)
ip l2tp del tunnel tunnel_id 1000
Serveur 2
Création du tunnel
ip l2tp add tunnel tunnel_id 2000 peer_tunnel_id 1000 encap udp local 10.254.254.253 remote 10.254.254.254 udp_sport 5000 udp_dport 6000
Création de la session
ip l2tp add session tunnel_id 2000 session_id 4000 peer_session_id 3000
Afficher le tunnel
ip l2tp show tunnel
Afficher la session
ip l2tp show session
Suppression du tunnel (avec sa session)
ip l2tp del tunnel tunnel_id 2000