summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorCheeze_It <none@none.com>2021-08-05 16:00:33 -0600
committerChristian Poessinger <christian@poessinger.com>2021-08-08 16:48:21 +0200
commit92db99f8e21b0dc0965b544a3a88e82bbea26eaa (patch)
tree7ad698dfb80b9f22e0a4b99b24313c9b5970667d /src/op_mode
parent863d3c78fea3845f0bcaaa9429210b867ecf41b0 (diff)
downloadvyos-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/op_mode')
-rwxr-xr-xsrc/op_mode/ping.py2
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'
},