]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
veth.4: Add a more direct example
authorDevin J. Pohly <djpohly@gmail.com>
Mon, 18 May 2020 20:58:28 +0000 (15:58 -0500)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Tue, 19 May 2020 19:53:28 +0000 (21:53 +0200)
iproute2 allows you to specify the netns for either side of a veth
interface at creation time.  Add an example of this to veth(4) so
it doesn't sound like you have to move the interfaces in a
separate step.

Verified with commands:
    # ip netns add alpha
    # ip netns add bravo
    # ip link add foo netns alpha type veth peer bar netns bravo
    # ip -n alpha link show
    # ip -n bravo link show

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man4/veth.4

index 20294c097df9743879e9879e0c16c06ce8f05e85..2d59882a07e3c136aca4e09b5747cc0f3d404a73 100644 (file)
@@ -63,13 +63,23 @@ A particularly interesting use case is to place one end of a
 .B veth
 pair in one network namespace and the other end in another network namespace,
 thus allowing communication between network namespaces.
-To do this, one first creates the
+To do this, one can provide the
+.B netns
+parameter when creating the interfaces:
+.PP
+.in +4n
+.EX
+# ip link add <p1-name> netns <p1-ns> type veth peer <p2-name> netns <p2-ns>
+.EE
+.in
+.PP
+or, for an existing
 .B veth
-device as above and then moves one side of the pair to the other namespace:
+pair, move one side to the other namespace:
 .PP
 .in +4n
 .EX
-# ip link set <p2-name> netns <p2-namespace>
+# ip link set <p2-name> netns <p2-ns>
 .EE
 .in
 .PP