Any suggestions on how to debug this better? Can I reset the WAN DHCP from the console so I can watch for errors? It's driving me nuts since a reboot tends to fix up the problem right away.
The correct binary to check is (and always was) /usr/local/bin/opensslCheers,Franco
root@hush:~ # openssl speed -elapsed -evp aes-128-cbcYou have chosen to measure elapsed time instead of user CPU time.Doing aes-128-cbc for 3s on 16 size blocks: 15080231 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 64 size blocks: 7226969 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 256 size blocks: 2525328 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 1024 size blocks: 570466 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 8192 size blocks: 73644 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 16384 size blocks: 36643 aes-128-cbc's in 3.00sOpenSSL 1.1.1d-freebsd 10 Sep 2019built on: reproducible build, date unspecifiedoptions:bn(64,64) rc4(8x,int) des(int) aes(partial) idea(int) blowfish(ptr)compiler: clangThe 'numbers' are in 1000s of bytes per second processed.type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytesaes-128-cbc 80427.90k 154175.34k 215494.66k 194719.06k 201097.22k 200119.64k
root@hush:~ # /usr/local/bin/openssl speed -elapsed -evp aes-128-cbcYou have chosen to measure elapsed time instead of user CPU time.Doing aes-128-cbc for 3s on 16 size blocks: 11289033 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 64 size blocks: 5595084 aes-128-cbc's in 3.01sDoing aes-128-cbc for 3s on 256 size blocks: 2235362 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 1024 size blocks: 690092 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 8192 size blocks: 89374 aes-128-cbc's in 3.00sDoing aes-128-cbc for 3s on 16384 size blocks: 44699 aes-128-cbc's in 3.00sOpenSSL 1.1.1h 22 Sep 2020built on: Tue Oct 20 22:46:58 2020 UTCoptions:bn(64,64) rc4(8x,int) des(int) aes(partial) blowfish(ptr)compiler: cc -fPIC -pthread -Wa,--noexecstack -Qunused-arguments -O2 -pipe -DHARDENEDBSD -fPIE -fPIC -fstack-protector-all -fno-strict-aliasing -DL_ENDIAN -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM -DRC4_ASM -DMD5_ASM -DAESNI_ASM -DVPAES_ASM -DGHASH_ASM -DECP_NISTZ256_ASM -DX25519_ASM -DPOLY1305_ASM -D_THREAD_SAFE -D_REENTRANT -DNDEBUGThe 'numbers' are in 1000s of bytes per second processed.type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytesaes-128-cbc 60208.18k 119051.76k 190750.89k 235551.40k 244050.60k 244116.14k
Guys, for the love of the Gods please use /usr/local/bin/openssl # which openssl/usr/bin/opensslCheers,Franco