netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation.
@ 2010-12-15 18:40 David Shwatrz
  2010-12-15 18:52 ` Stephen Hemminger
  0 siblings, 1 reply; 4+ messages in thread
From: David Shwatrz @ 2010-12-15 18:40 UTC (permalink / raw)
  To: davem, netdev, jchapman

[-- Attachment #1: Type: text/plain, Size: 403 bytes --]

Hi,

This patch updates Documentation/networking/l2tp.txt.
Stephen Hemminger (maintainer of iproute2) rejected patches for
iproute2 which enable
"ip l2tp" commands. There is a utility called l2tpv3tun which
has commands to doing the same (managing static L2TPv3 tunnel).
see:
http://www.spinics.net/lists/netdev/msg142037.html


Regards,
David Shwartz

Signed-off-by: David Shwartz <dshwatrz@gmail.com>

[-- Attachment #2: patch.txt --]
[-- Type: text/plain, Size: 1202 bytes --]

diff --git a/Documentation/networking/l2tp.txt b/Documentation/networking/l2tp.txt
index e7bf397..eb6510e 100644
--- a/Documentation/networking/l2tp.txt
+++ b/Documentation/networking/l2tp.txt
@@ -165,6 +165,10 @@ case -- the tunnel socket is created by the kernel and configured
 using parameters sent in the L2TP_CMD_TUNNEL_CREATE netlink
 request. The "ip" utility of iproute2 has commands for managing static
 L2TPv3 tunnels; do "ip l2tp help" for more information.
+The "l2tpv3tun" utility has commands for managing static
+L2TPv3 tunnels; do "l2tpv3tun help" for more information.   
+l2tpv3tun can be download from: hftp://ftp.openl2tp.org/releases
+
 
 Debugging
 =========
@@ -216,9 +220,9 @@ tunnel endpoints:-
 # modprobe l2tp_eth
 # modprobe l2tp_netlink
 
-# ip l2tp add tunnel tunnel_id 1 peer_tunnel_id 1 udp_sport 5000 \
+# l2tpv3tun add tunnel tunnel_id 1 peer_tunnel_id 1 udp_sport 5000 \
   udp_dport 5000 encap udp local 192.168.1.1 remote 192.168.1.2
-# ip l2tp add session tunnel_id 1 session_id 1 peer_session_id 1
+# l2tpv3tun add session tunnel_id 1 session_id 1 peer_session_id 1
 # ifconfig -a
 # ip addr add 10.5.1.2/32 peer 10.5.1.1/32 dev l2tpeth0
 # ifconfig l2tpeth0 up

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation.
  2010-12-15 18:40 [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation David Shwatrz
@ 2010-12-15 18:52 ` Stephen Hemminger
  2010-12-15 19:14   ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2010-12-15 18:52 UTC (permalink / raw)
  To: David Shwatrz; +Cc: davem, netdev, jchapman

On Wed, 15 Dec 2010 20:40:38 +0200
David Shwatrz <dshwatrz@gmail.com> wrote:

> Hi,
> 
> This patch updates Documentation/networking/l2tp.txt.
> Stephen Hemminger (maintainer of iproute2) rejected patches for
> iproute2 which enable
> "ip l2tp" commands. There is a utility called l2tpv3tun which
> has commands to doing the same (managing static L2TPv3 tunnel).
> see:
> http://www.spinics.net/lists/netdev/msg142037.html
> 
> 
> Regards,
> David Shwartz
> 
> Signed-off-by: David Shwartz <dshwatrz@gmail.com>

I wish you would stop whining about it and just reimplement
without using libnl as requested.

-- 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation.
  2010-12-15 18:52 ` Stephen Hemminger
@ 2010-12-15 19:14   ` David Miller
  2010-12-16 18:22     ` David Shwatrz
  0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2010-12-15 19:14 UTC (permalink / raw)
  To: shemminger; +Cc: dshwatrz, netdev, jchapman

From: Stephen Hemminger <shemminger@vyatta.com>
Date: Wed, 15 Dec 2010 10:52:07 -0800

> I wish you would stop whining about it and just reimplement
> without using libnl as requested.

Seriously.

David, I'm not applying a patch where you complain about
a problem which you have self-inflicted upon yourself.

Stephen's request was beyond reasonable, and you're just
being unnecessarily difficult.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation.
  2010-12-15 19:14   ` David Miller
@ 2010-12-16 18:22     ` David Shwatrz
  0 siblings, 0 replies; 4+ messages in thread
From: David Shwatrz @ 2010-12-16 18:22 UTC (permalink / raw)
  To: David Miller; +Cc: shemminger, netdev, jchapman

Hi,
My intention was just to fix the documentation so it will reflect
the current situation, where you cannot use "ip l2tp", but there
is an alternative (though temporary probably). It could take
time till this will be available in iproute2. That's all.

DS



On Wed, Dec 15, 2010 at 9:14 PM, David Miller <davem@davemloft.net> wrote:
> From: Stephen Hemminger <shemminger@vyatta.com>
> Date: Wed, 15 Dec 2010 10:52:07 -0800
>
>> I wish you would stop whining about it and just reimplement
>> without using libnl as requested.
>
> Seriously.
>
> David, I'm not applying a patch where you complain about
> a problem which you have self-inflicted upon yourself.
>
> Stephen's request was beyond reasonable, and you're just
> being unnecessarily difficult.
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-12-16 18:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15 18:40 [PATCH net-next-2.6] Documentation/networking/l2tp.txt: update documentation David Shwatrz
2010-12-15 18:52 ` Stephen Hemminger
2010-12-15 19:14   ` David Miller
2010-12-16 18:22     ` David Shwatrz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).