diff options
author | Susant Sahani <susant@redhat.com> | 2014-05-22 11:59:19 +0530 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-06-02 16:16:02 +0200 |
commit | a9f434cf00d1d36d9a013b9739efe69653dd7279 (patch) | |
tree | 9b420807b78cac20ef55398cb95105a63ec698de /src/network/networkd.h | |
parent | 8bb088c5d44e566eb101e3f093d690aeb2a82285 (diff) |
networkd: sit-tunnel add support for pmtudisc
This patch adds path of mtu discovery for sit tunnel.
To enable/disable DiscoverPathMTU is introduced.
Example configuration
file: sit.netdev
[NetDev]
Name=sit-tun
Kind=sit
MTUBytes=1480
[Tunnel]
DiscoverPathMTU=1
Local=X.X.X.X
Remote=X.X.X.X
By default pmtudisc is turned on , if DiscoverPathMTU
is missing from the config. To turn it off
DiscoverPathMTU=0 needs to be set.
Diffstat (limited to 'src/network/networkd.h')
-rw-r--r-- | src/network/networkd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/networkd.h b/src/network/networkd.h index e504854761..6f69c9a487 100644 --- a/src/network/networkd.h +++ b/src/network/networkd.h @@ -109,6 +109,7 @@ struct NetDev { int ifindex; NetDevState state; + bool tunnel_pmtudisc; unsigned tunnel_ttl; unsigned tunnel_tos; struct in_addr tunnel_local; |