diff options
author | Cheeze_It <none@none.com> | 2021-08-05 16:00:33 -0600 |
---|---|---|
committer | Cheeze_It <none@none.com> | 2021-08-05 16:00:33 -0600 |
commit | d012c732a8902d4848e29f37fcede66a060e3c7f (patch) | |
tree | 1e9a5e0010c58ad63650fabacaab00a616195069 | |
parent | 947f8290ea7094dbd2c4e72df42f54e763c7ec62 (diff) | |
download | vyos-1x-d012c732a8902d4848e29f37fcede66a060e3c7f.tar.gz vyos-1x-d012c732a8902d4848e29f37fcede66a060e3c7f.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 :(
-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' }, |