I had the same issue... re-linking/aliasing to the existing libraries (libssl.so.1.1 and libcrypto.so.1.1) fixed the issue. A simple `ls -la` helped me figure out what libraries I had... root@Tower:~# cd /usr/lib64/ root@Tower:/usr/lib64# ln -s libssl.so.1.1 libssl.so.1 root@Tower:/usr/lib64# ln -s libcrypto.so.1.1 libcrypto.so.1 root@Tower:/usr/lib64# ldd /usr/bin/iperf3 linux-vdso.so.1 (0x00007ffe68998000) libiperf.so.0 => /usr/lib64/libiperf.so.0 (0x00001474185ba000)
    • Thanks
    • Like
    4