Forum Discussion

Seçkin1983's avatar
Seçkin1983
Icon for Altostratus rankAltostratus
Mar 21, 2023

How to print out pool members using SSL?

Hello,

Is that possible to learn, which pool members use SSL. I think, we can do this from command line but how?

Many Thanks

Seçkin

2 Replies

  • Seçkin1983 definitely what mihaic has stated but you can also use curl from the F5 bash prompt to see this output in a slightly different way. The following is an example of what you can run.

    curl -Ivk "https://<pool_member_IP>:<pool_member_port>/"

    If your server requires that you provide a valid hostname you can do the following instead.

    curl -IvkH 'Host: <site_host>' "https://<pool_member_IP>:<pool_member_port>/"

    Both of these will step through the SSL handshake process providing you the SSL certificate that is used which you can then see that this pool member is expecting SSL communication over that IP and port combination.