diff options
author | Brandon Stepler <brandon@stepler.net> | 2021-04-27 15:00:00 -0400 |
---|---|---|
committer | Brandon Stepler <brandon@stepler.net> | 2021-04-27 15:00:00 -0400 |
commit | 44d4b6e663aa0df979b37299fbbc3b5b698c5379 (patch) | |
tree | 01e8aa1285b38d150dd93aafa8e86a4fa1ec96be /src | |
parent | e5e61c36939dcbb1c7db6ec3941ea18bd7d80c0f (diff) | |
download | vyos-1x-44d4b6e663aa0df979b37299fbbc3b5b698c5379.tar.gz vyos-1x-44d4b6e663aa0df979b37299fbbc3b5b698c5379.zip |
ecmp: T3502: fix check for "layer4-hashing" key
Diffstat (limited to 'src')
-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) |