diff options
author | Cheeze_It <none@none.com> | 2021-08-05 16:00:33 -0600 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-08 16:48:21 +0200 |
commit | 92db99f8e21b0dc0965b544a3a88e82bbea26eaa (patch) | |
tree | 7ad698dfb80b9f22e0a4b99b24313c9b5970667d /src | |
parent | 863d3c78fea3845f0bcaaa9429210b867ecf41b0 (diff) | |
download | vyos-1x-92db99f8e21b0dc0965b544a3a88e82bbea26eaa.tar.gz vyos-1x-92db99f8e21b0dc0965b544a3a88e82bbea26eaa.zip |
ping: T3634: Fixing do not fragment to Ping
In this commit we fix the do not fragment capability
for ping commands. Sorry for messing it up earlier :(
(cherry picked from commit d012c732a8902d4848e29f37fcede66a060e3c7f)
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' }, |