diff options
author | Jason Hendry <jhendry@mintel.com> | 2014-10-29 20:19:53 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-09-14 13:37:20 +0200 |
commit | 3719eee6a1db465412fd6c2e104fcf6c37728d63 (patch) | |
tree | b91fd1c5162e2aacda03c8a625e0d4c355b8c6ef /scripts | |
parent | 4b00dd03890d7c378b1c53f0a9edc26e3fcc9102 (diff) | |
download | vyatta-cfg-system-3719eee6a1db465412fd6c2e104fcf6c37728d63.tar.gz vyatta-cfg-system-3719eee6a1db465412fd6c2e104fcf6c37728d63.zip |
Correcting udp offload option name form segmentation to fragmentation
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-interfaces.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl index 9271e871..b602dda6 100755 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -600,7 +600,7 @@ sub set_offload_setting { my %ethtool_opts = ( 'generic-receive-offload' => 'gro', 'generic-segmentation-offload' => 'gso', 'tcp-segmentation-offload' => 'tso', - 'udp-segmentation-offload' => 'ufo', + 'udp-fragmentation-offload' => 'ufo', ); if (defined($nvalue) && $nvalue ne $ovalue) { |