I want to test how my server behaves for a client that have a switch for disabling or doesn't have SNI support at all. Preferably, one with a command-line interface and in official repositories.
Can I disable SNI in wget
or curl
?
openssl s_client
without specifying -servername
:
echo | openssl s_client -connect ###.###.###.###:443 2>/dev/null | awk '/Certificate chain/,/---/'
vs
echo | openssl s_client -connect domain.name:443 -servername domain.name 2>/dev/null | awk '/Certificate chain/,/---/'
-noservername
in new OpenSSL versions, as using SNI is the default, see this answer
– SWdV
May 23 '23 at 13:06
winetricks ie6
? :P – muru Dec 12 '15 at 07:58curl
) – muru Dec 12 '15 at 08:06ie6
is an option and if you want, you can post it as an answer and I'll mark it as a solution until a better one appears. – int_ua Dec 14 '15 at 01:34