|
|
049c96 |
From f5daf2e2fa8afe3adb7eb9bb04fb41828144e562 Mon Sep 17 00:00:00 2001
|
|
|
049c96 |
From: Phil Sutter <psutter@redhat.com>
|
|
|
049c96 |
Date: Thu, 18 Aug 2016 20:54:31 +0200
|
|
|
049c96 |
Subject: [PATCH] man: ip-link.8: Document missing geneve options
|
|
|
049c96 |
|
|
|
049c96 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1339178
|
|
|
049c96 |
Upstream Status: iproute2.git commit 7e33b093318cd
|
|
|
049c96 |
|
|
|
049c96 |
commit 7e33b093318cd9281e3df3572ed64b57e12ba642
|
|
|
049c96 |
Author: Phil Sutter <phil@nwl.cc>
|
|
|
049c96 |
Date: Fri Aug 12 01:17:12 2016 +0200
|
|
|
049c96 |
|
|
|
049c96 |
man: ip-link.8: Document missing geneve options
|
|
|
049c96 |
|
|
|
049c96 |
This adds missing documentation of geneve type options:
|
|
|
049c96 |
|
|
|
049c96 |
- dstport
|
|
|
049c96 |
- external
|
|
|
049c96 |
- udpcsum
|
|
|
049c96 |
- udp6zerocsumtx
|
|
|
049c96 |
- udp6zerocsumrx
|
|
|
049c96 |
|
|
|
049c96 |
The bits for the last three was just copy and pasted from vxlan section.
|
|
|
049c96 |
|
|
|
049c96 |
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
|
|
049c96 |
---
|
|
|
049c96 |
man/man8/ip-link.8.in | 36 ++++++++++++++++++++++++++++++++++++
|
|
|
049c96 |
1 file changed, 36 insertions(+)
|
|
|
049c96 |
|
|
|
049c96 |
diff --git a/man/man8/ip-link.8.in b/man/man8/ip-link.8.in
|
|
|
049c96 |
index 18c7040..8968cf2 100644
|
|
|
049c96 |
--- a/man/man8/ip-link.8.in
|
|
|
049c96 |
+++ b/man/man8/ip-link.8.in
|
|
|
049c96 |
@@ -664,6 +664,16 @@ the following additional arguments are supported:
|
|
|
049c96 |
.BI tos " TOS "
|
|
|
049c96 |
] [
|
|
|
049c96 |
.BI flowlabel " FLOWLABEL "
|
|
|
049c96 |
+] [
|
|
|
049c96 |
+.BI dstport " PORT"
|
|
|
049c96 |
+] [
|
|
|
049c96 |
+.RB [ no ] external
|
|
|
049c96 |
+] [
|
|
|
049c96 |
+.RB [ no ] udpcsum
|
|
|
049c96 |
+] [
|
|
|
049c96 |
+.RB [ no ] udp6zerocsumtx
|
|
|
049c96 |
+] [
|
|
|
049c96 |
+.RB [ no ] udp6zerocsumrx
|
|
|
049c96 |
]
|
|
|
049c96 |
|
|
|
049c96 |
.in +8
|
|
|
049c96 |
@@ -687,6 +697,32 @@ the following additional arguments are supported:
|
|
|
049c96 |
.BI flowlabel " FLOWLABEL"
|
|
|
049c96 |
- specifies the flow label to use in outgoing packets.
|
|
|
049c96 |
|
|
|
049c96 |
+.sp
|
|
|
049c96 |
+.BI dstport " PORT"
|
|
|
049c96 |
+- select a destination port other than the default of 6081.
|
|
|
049c96 |
+
|
|
|
049c96 |
+.sp
|
|
|
049c96 |
+.RB [ no ] external
|
|
|
049c96 |
+- make this tunnel externally controlled (or not, which is the default). This
|
|
|
049c96 |
+flag is mutually exclusive with the
|
|
|
049c96 |
+.BR id ,
|
|
|
049c96 |
+.BR remote ,
|
|
|
049c96 |
+.BR ttl ,
|
|
|
049c96 |
+.BR tos " and " flowlabel
|
|
|
049c96 |
+options.
|
|
|
049c96 |
+
|
|
|
049c96 |
+.sp
|
|
|
049c96 |
+.RB [ no ] udpcsum
|
|
|
049c96 |
+- specifies if UDP checksum is calculated for transmitted packets over IPv4.
|
|
|
049c96 |
+
|
|
|
049c96 |
+.sp
|
|
|
049c96 |
+.RB [ no ] udp6zerocsumtx
|
|
|
049c96 |
+- skip UDP checksum calculation for transmitted packets over IPv6.
|
|
|
049c96 |
+
|
|
|
049c96 |
+.sp
|
|
|
049c96 |
+.RB [ no ] udp6zerocsumrx
|
|
|
049c96 |
+- allow incoming UDP packets over IPv6 with zero checksum field.
|
|
|
049c96 |
+
|
|
|
049c96 |
.in -8
|
|
|
049c96 |
|
|
|
049c96 |
.TP
|
|
|
049c96 |
--
|
|
|
049c96 |
1.8.3.1
|
|
|
049c96 |
|