diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-08 16:47:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 16:47:31 +0200 |
commit | 293c31785abeb723e6292d208a1b9a9ae2e90825 (patch) | |
tree | 47a17d5600e6893fcbe5c23778cfe97c7fad5751 /src | |
parent | 5b69aad5bfe1fd1dfc51afb1d4b6323028009deb (diff) | |
parent | d012c732a8902d4848e29f37fcede66a060e3c7f (diff) | |
download | vyos-1x-293c31785abeb723e6292d208a1b9a9ae2e90825.tar.gz vyos-1x-293c31785abeb723e6292d208a1b9a9ae2e90825.zip |
Merge pull request #956 from Cheeze-It/current
PING: T3634: Fixing do not fragment to Ping
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/ping.py b/src/op_mode/ping.py index 610f6a05d..2144ab53c 100755 --- a/src/op_mode/ping.py +++ b/src/op_mode/ping.py @@ -51,7 +51,7 @@ options = { 'help': 'Number of seconds before ping exits' }, 'do-not-fragment': { - 'ping': '{command} -M dont', + 'ping': '{command} -M do', 'type': 'noarg', 'help': 'Set DF-bit flag to 1 for no fragmentation' }, |