diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-27 21:43:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 21:43:46 +0200 |
commit | c76389156c41414a3a4e381535151607a42fb06f (patch) | |
tree | 2fee8d5e639ac7bba59cc8191adcfb07c7f13b5d | |
parent | d2044c0eac444905549a6bac20b9eee78eae9084 (diff) | |
parent | 44d4b6e663aa0df979b37299fbbc3b5b698c5379 (diff) | |
download | vyos-1x-c76389156c41414a3a4e381535151607a42fb06f.tar.gz vyos-1x-c76389156c41414a3a4e381535151607a42fb06f.zip |
Merge pull request #821 from bstepler/T3502
ecmp: T3502: fix check for "layer4-hashing" key
-rwxr-xr-x | src/conf_mode/system-ip.py | 2 |
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) |