diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-24 21:32:44 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-24 21:43:27 +0200 |
commit | 763b3ff6f5d8345815074217436c119400510482 (patch) | |
tree | 1029bd0c1ad68299c8fcc30f87357e1fb3074f17 /python | |
parent | 0d16353e97521bfce49d131e0a18c49b307d95e0 (diff) | |
download | vyos-1x-763b3ff6f5d8345815074217436c119400510482.tar.gz vyos-1x-763b3ff6f5d8345815074217436c119400510482.zip |
tunnel: T3555: add "ignore-df" support for GRE tunnels
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/tunnel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py index 2a266fc9f..64c735824 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -62,6 +62,7 @@ class TunnelIf(Interface): mapping_ipv4 = { 'parameters.ip.key' : 'key', 'parameters.ip.no_pmtu_discovery' : 'nopmtudisc', + 'parameters.ip.ignore_df' : 'ignore-df', 'parameters.ip.tos' : 'tos', 'parameters.ip.ttl' : 'ttl', 'parameters.erspan.direction' : 'erspan_dir', |