summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorBrandon Stepler <brandon@stepler.net>2021-04-27 15:00:00 -0400
committerBrandon Stepler <brandon@stepler.net>2021-04-27 15:00:00 -0400
commit44d4b6e663aa0df979b37299fbbc3b5b698c5379 (patch)
tree01e8aa1285b38d150dd93aafa8e86a4fa1ec96be /src/conf_mode
parente5e61c36939dcbb1c7db6ec3941ea18bd7d80c0f (diff)
downloadvyos-1x-44d4b6e663aa0df979b37299fbbc3b5b698c5379.tar.gz
vyos-1x-44d4b6e663aa0df979b37299fbbc3b5b698c5379.zip
ecmp: T3502: fix check for "layer4-hashing" key
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/system-ip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/system-ip.py b/src/conf_mode/system-ip.py
index 190a0daca..32cb2f036 100755
--- a/src/conf_mode/system-ip.py
+++ b/src/conf_mode/system-ip.py
@@ -70,7 +70,7 @@ def apply(opt):
sysctl('net.ipv4.fib_multipath_use_neigh', tmp)
tmp = '0'
- if isinstance(dict_search('multipath.ignore_unreachable_nexthops', opt), dict):
+ if isinstance(dict_search('multipath.layer4_hashing', opt), dict):
tmp = '1'
sysctl('net.ipv4.fib_multipath_hash_policy', tmp)